:root {

    --color-orange-50: #fff8ef;
    --color-orange-100: #fff1e0;
    --color-orange-600: #ff6b1a;
    --color-orange-700: #cf4c05;
    --color-orange-subtle: #ffe8d6;
    --color-orange-border: rgba(255, 107, 26, 0.2);
    --color-text-main: #1a1410;
    --color-text-subtle: #6b5e52;
    --color-white: #ffffff;
    --color-bg-gray: #f7f7f7;
    --color-stroke: #e6e6e6;
    --color-stroke-alt: #e5e5e5;
    --color-whatsapp: #1da851;
    --color-whatsapp-text: #3fc350;
    --color-whatsapp-float: #25d366;
    --font-Montserrat: 'Montserrat', sans-serif;
    --font-Inter: 'Inter', sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.25rem;
    --fs-lg: 1.5rem;
    --fs-xl: 2rem;
    --fs-2xl: 3rem;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-14: 3.5rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 14px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --shadow-pill: 8px 8px 20px rgba(255, 107, 26, 0.2);
    --shadow-card: 0 4px 12px rgba(26, 20, 16, 0.06);
    --shadow-float: 0 8px 24px rgba(29, 168, 81, 0.4);
    --max-width: 1440px;
    --section-px: var(--space-20);
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.25s ease-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.5;
    color: var(--color-text-main);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.85;
}

.logo__icon {
    width: 40px;
    height: 45px;
    flex-shrink: 0;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.125;
    padding-left: var(--space-3);
    border-left: 1px solid var(--color-stroke);
}

.logo__text-top {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: var(--fs-base);
    color: var(--color-text-main);
}

.logo__text-bottom {
    font-family: var(--font-logo);
    font-weight: 300;
    font-size: var(--fs-base);
    color: var(--color-orange-600);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-xl);
    font-family: var(--font-Montserrat);
    font-size: var(--fs-xs);
    font-weight: 600;
    background: var(--color-orange-subtle);
    border: 1px solid var(--color-orange-border);
    color: var(--color-orange-600);
}

.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--color-orange-600);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-xl);
    font-family: var(--font-Montserrat);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-orange-600);
    background: var(--color-white);
    border: 1px solid var(--color-orange-border);
}

.tag--light {
    background: var(--color-orange-50);
    border-color: var(--color-orange-100);
}

.tag--transparent {
    background: transparent;
    border: none;
    color: var(--color-white);
    padding: var(--space-2) 0;
}

.tag__line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-orange-600);
}

.tag__line--white {
    background: var(--color-white);
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-start;
    max-width: 500px;
}

.section-heading__title {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.25;
}

.section-heading__title span {
    color: var(--color-text-main);
}

.text-accent {
    color: var(--color-orange-600);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-Montserrat);
    font-weight: 500;
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--color-orange-600);
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(1px);
}

.btn--outline {
    padding: 14px 12px;
    min-width: 180px;
    border: 1px solid var(--color-orange-600);
    background: var(--color-white);
    color: var(--color-orange-600);
    border-radius: var(--radius-lg);
}

.btn--outline:hover {
    background: var(--color-orange-50);
}

.btn--outline-white {
    padding: 14px 12px;
    min-width: 180px;
    border: 1px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
    border-radius: var(--radius-xl);
    height: 48px;
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn--whatsapp {
    padding: 12px 16px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.btn--whatsapp:hover {
    background: #189343;
    transform: translateY(-2px);
}

.btn--whatsapp-white {
    padding: 12px 16px;
    background: var(--color-white);
    color: var(--color-whatsapp-text);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.btn--whatsapp-white:hover {
    background: var(--color-bg-gray);
}

.btn--whatsapp .fa-whatsapp,
.btn--whatsapp-white .fa-whatsapp {
    font-size: 1.25rem;
}

.header {
    background: var(--color-white);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 var(--color-stroke);
}

.header__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    padding: var(--space-6) var(--section-px);
}

.nav__list {
    display: flex;
    gap: var(--space-12);
    align-items: center;
}

.nav__link {
    font-family: var(--font-Inter);
    font-size: var(--fs-xs);
    color: var(--color-text-subtle);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link:hover,
.nav__link:focus {
    color: var(--color-orange-600);
}

.hero {
    background: var(--color-orange-100);
    min-height: calc(100vh - 80px);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-16);
    padding: var(--space-20);
    min-height: 900px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-14);
    max-width: 540px;
}

.hero__title {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-main);
    letter-spacing: -0.48px;
    margin-top: var(--space-8);
}

.hero__subtitle {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-md);
    line-height: 1.6;
    color: var(--color-text-subtle);
    max-width: 442px;
    margin-top: var(--space-6);
}

.hero__subtitle strong {
    font-weight: 700;
    color: var(--color-text-main);
}

.hero__content .btn--whatsapp {
    align-self: flex-start;
    margin-top: var(--space-6);
}

.hero__stats {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-12);
    height: 110px;
    box-shadow: var(--shadow-card);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.stat__label {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-text-subtle);
    white-space: nowrap;
}

.stat__value {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-orange-600);
    white-space: nowrap;
}

.stat__divider {
    display: block;
    width: 1px;
    height: 62px;
    background: var(--color-stroke);
}

.hero__visual {
    position: relative;
    max-width: 600px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero__image-circle img {
    width: 100%;
}

.hero__emoji {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    box-shadow: var(--shadow-pill);
    animation: float 3s ease-in-out infinite;
    padding: 12px;
}

.hero__emoji img {
    max-width: 52px;
    width: 100%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero__emoji--1 {
    top: 16%;
    right: 12%;
    animation-delay: 0s;
}

.hero__emoji--2 {
    bottom: 0;
    right: 25%;
    animation-delay: 0.5s;
}

.hero__emoji--3 {
    left: 0;
    top: 40%;
    animation-delay: 1s;
}

.location-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2);
    background: var(--color-orange-600);
    color: var(--color-white);
    font-family: var(--font-Montserrat);
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-pill);
    white-space: nowrap;
    animation: float 4s ease-in-out infinite;
}

.location-pill i {
    font-size: 16px;
}

.location-pill--1 {
    top: 25%;
    left: 12%;
    animation-delay: 0.2s;
}

.location-pill--2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 0.8s;
}

.location-pill--3 {
    bottom: 15%;
    right: 5%;
    animation-delay: 1.4s;
}

.location-pill--4 {
    top: 45%;
    right: 2%;
    animation-delay: 2s;
}

.process {
    background: var(--color-orange-600);
    overflow: hidden;
}

.process .process_container {
    padding: var(--space-8) var(--section-px);
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
}

.process__list {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--space-8);
    position: relative;
}

.process__list::before {
    content: "";
    position: absolute;
    width: 100%;
    top: 24px;
    left: 0;
    height: 2px;
    border: 2px solid var(--color-orange-700);
    z-index: 0;
}

.process__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

.process__number {
    width: 48px;
    height: 48px;
    background: var(--color-orange-700);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-Montserrat);
    font-size: var(--fs-lg);
    font-weight: 600;
}

.process__text {
    color: var(--color-white);
    font-family: var(--font-Montserrat);
    font-size: var(--fs-base);
    font-weight: 600;
    text-align: center;
}

.services-area {
    background: var(--color-bg-gray);

}

.services-area .services-area_container {
    max-width: var(--max-width);
    padding: var(--space-20) var(--section-px);
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin: 0 auto;
}

.services-area__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 561px 1fr;
    gap: var(--space-16);
    align-items: start;
}

.services-area__map {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 671px;
}

.services-area__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-area__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.area-card {
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    border-radius: var(--radius-lg);
    padding: 23px;
    height: 129px;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.area-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.area-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.area-card__icon {
    width: 32px;
    height: 32px;
    background: var(--color-orange-600);
    border: 1px solid #e7e7e7;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 14px;
    flex-shrink: 0;
}

.area-card__title {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-text-main);
    flex-grow: 1;
}

.area-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--color-orange-subtle);
    border: 1px solid var(--color-orange-border);
    border-radius: var(--radius-xl);
    color: var(--color-orange-600);
    font-family: var(--font-Montserrat);
    font-size: var(--fs-xs);
    font-weight: 400;
}

.area-card__neighborhoods {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-left: 48px;
}

.neighborhood-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2);
    background: var(--color-bg-gray);
    border: 1px solid var(--color-stroke-alt);
    border-radius: var(--radius-lg);
    font-family: var(--font-Montserrat);
    font-size: var(--fs-sm);
    color: var(--color-text-subtle);
}

.neighborhood-chip i {
    color: var(--color-text-subtle);
    font-size: 14px;
}

.product-categories {
    background: var(--color-white);
}

.product-categories .product-categories_container {
    padding: var(--space-20) var(--section-px);
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    max-width: var(--max-width);
    margin: 0 auto;
}

.product-categories #products-title span {
    color: var(--color-orange-600);
}


.category-card {
    position: relative;
    height: 357px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 93px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: var(--space-8);
}

.category-card__title {
    color: var(--color-white);
    font-family: var(--font-Montserrat);
    font-size: var(--fs-lg);
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 357px;
    gap: var(--space-6);
}

.category-card:nth-child(1) {
    grid-column: span 7;
}

.category-card:nth-child(2) {
    grid-column: span 5;
}

.category-card:nth-child(3) {
    grid-column: span 5;
}

.category-card:nth-child(4) {
    grid-column: span 7;
}

.about-section {
    background: var(--color-white);
}

.about-section .about-section_container {
    padding: var(--space-20) var(--section-px);
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 0 auto;
    max-width: var(--max-width);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--color-bg-gray);
    border: 1px solid var(--color-stroke);
    border-radius: var(--radius-2xl);
    padding: 31px;
    height: 244px;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    border-color: var(--color-orange-border);
    box-shadow: var(--shadow-card);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--color-orange-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange-600);
    font-size: 20px;
    margin-bottom: var(--space-6);
    flex-shrink: 0;
}

.feature-card__icon--filled {
    background: var(--color-orange-600);
    color: var(--color-white);
}

.feature-card__title {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--color-text-main);
}

.feature-card__description {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-base);
    color: var(--color-text-subtle);
    line-height: 1.5;
}

.faq {
    background: var(--color-bg-gray);
}

.faq .faq_container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-20) var(--section-px);
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.faq__grid {
    display: grid;
    grid-template-columns: 506px 1fr;
    gap: var(--space-16);
    align-items: start;
}

.faq__image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 728px;
    background: var(--color-white);
}

.faq__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.faq-item[open] {
    box-shadow: var(--shadow-card);
}

.faq-item__summary {
    list-style: none;
    padding: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    cursor: pointer;
    font-family: var(--font-Montserrat);
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--color-text-main);
    transition: background-color var(--transition-fast);
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary:hover {
    background: var(--color-bg-gray);
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-orange-600);
    color: var(--color-white);
    font-size: 12px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    border: 1px solid var(--color-orange-600);
}

.faq-item[open] .faq-item__icon i {
    --fa: "\f068";
    color: var(--color-orange-600);
}

.faq-item[open] .faq-item__icon {
    background: transparent;
}

.faq-item__content {
    padding: 10px 23px 23px;
    font-family: var(--font-Montserrat);
    font-size: var(--fs-base);
    color: var(--color-text-subtle);
    line-height: 1.5;
}

.cta {
    background: var(--color-orange-600);
    color: var(--color-white);
    overflow: hidden;
    position: relative;
}

.cta__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 184px;
    padding: var(--space-20) var(--section-px);
    align-items: center;
}

.cta__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    max-width: 475px;
}

.cta__title {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-xl);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-white);
}

.cta__subtitle {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-base);
    color: var(--color-white);
    opacity: 0.95;
}

.cta__buttons {
    display: flex;
    gap: var(--space-6);
    align-items: center;
    flex-wrap: wrap;
}

.cta__illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
}

.cta__illustration svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.footer {
    background: var(--color-orange-50);

}

.footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    padding: var(--space-20) var(--section-px);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    max-width: 234px;
}

.footer__description {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-sm);
    color: var(--color-text-subtle);
    line-height: 1.57;
}

.footer__badge {
    align-self: flex-start;
}

.footer__links {
    display: grid;
    grid-template-columns: auto auto;
    gap: 88px;
    justify-content: flex-end;
}

.footer__heading {
    font-family: var(--font-Montserrat);
    font-weight: 500;
    font-size: var(--fs-base);
    color: var(--color-text-main);
    margin-bottom: var(--space-6);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer__link {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-sm);
    color: var(--color-text-subtle);
    line-height: 1.57;
    transition: color var(--transition-fast);
}

.footer__link:hover,
.footer__link:focus {
    color: var(--color-orange-600);
}

.footer__divider {
    border: none;
    border-top: 1px solid var(--color-stroke);
    margin: 0;
}

.footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.footer__copyright,
.footer__legal {
    font-family: var(--font-Montserrat);
    font-size: var(--fs-xs);
    color: var(--color-text-subtle);
}

.footer__legal {
    text-align: right;
    max-width: 400px;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-whatsapp-float);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 32px;
    box-shadow: var(--shadow-float);
    z-index: 999;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    animation: pulse-ring 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:focus-visible {
    outline: 3px solid var(--color-white);
    outline-offset: 3px;
}

.btn-menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    color: var(--color-orange-600);
    font-size: var(--fs-lg);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 1280px) {
    :root {
        --section-px: var(--space-12);
    }

    .cta__container {
        gap: var(--space-16);
    }
}

@media (max-width: 1024px) {
    :root {
        --fs-2xl: 2.5rem;
        --section-px: var(--space-8);
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        padding: var(--space-12) var(--section-px);
        min-height: auto;
        display: flex;
        flex-direction: column-reverse;
    }

    .hero__content .badge {
        max-width: fit-content;
        margin: 0 auto;
    }

    .hero__title {
        text-align: center;
    }

    .hero__subtitle {
        text-align: center;
        max-width: 100%;
    }

    .hero__subtitle strong {
        display: inline-block;
    }

    .hero__visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__content .btn--whatsapp {
        margin: 0 auto;
    }

    .hero__content {
        max-width: 100%;
        align-items: center;
    }

    .process__list {
        gap: var(--space-4);
    }

    .category-grid {
        display: flex;
        flex-direction: column;
    }

    .services-area__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .services-area__map {
        height: 400px;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .faq__image {
        height: 400px;
    }

    .cta__container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .cta__illustration {
        max-width: 300px;
        margin: 0 auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta {
        overflow: unset;
    }

    .faq {
        padding-bottom: 250px;
    }

    .cta__container {
        display: flex;
        flex-direction: column-reverse;
    }

    .cta__container>* {
        max-width: 600px;
    }

    .cta__illustration {
        margin-top: -280px;
    }

    .cta__content .tag {
        justify-content: center;
    }

    .cta__content .cta__title {
        text-align: center;
    }

    .cta__content .cta__subtitle {
        text-align: center;
    }

    .cta__content .cta__buttons {
        flex-direction: column;
    }

    .header__cta {
        display: none;
    }

    .btn-menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        height: calc(100vh - 80px);
        background: #fff;
        top: 80px;
        width: 100%;
        z-index: 99;
        padding: var(--space-6) var(--section-px);
    }

    .nav.open {
        display: block;
    }

    .nav .nav__list {
        flex-direction: column;
        align-items: start;
    }

    .nav .nav__link {
        font-size: var(--fs-md);
    }
}

@media (max-width: 768px) {
    :root {
        --fs-2xl: 2rem;
        --fs-xl: 1.625rem;
        --space-20: 3rem;
    }

    .header__container {
        gap: var(--space-4);
        padding: var(--space-4) var(--section-px);
    }

    .nav {
        display: none;
    }

    .header__cta {
        min-width: auto;
        padding: var(--space-3);
    }

    .header__cta span {
        display: none;
    }

    .stat__divider {
        width: 100%;
        height: 1px;
    }

    .hero__emoji {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .location-pill {
        font-size: var(--fs-xs);
        padding: var(--space-1) var(--space-2);
    }

    .footer__brand {
        display: grid;
        grid-template-areas:
            'logo state'
            'about about';
        max-width: 100%;
    }

    .footer__brand .logo {
        grid-area: logo;
    }

    .footer__brand .footer__description {
        grid-area: about;
    }

    .footer__brand .footer__badge {
        grid-area: state;
        max-width: fit-content;
        margin-left: auto;
    }


    .category-grid {
        grid-template-columns: 1fr !important;
    }

    .category-card:nth-child(n) {
        grid-column: 1 !important;
    }

    .category-card {
        height: 280px;
    }

    .area-card {
        height: auto;
        padding: var(--space-4);
    }

    .area-card__neighborhoods {
        margin-left: 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        height: auto;
        padding: var(--space-6);
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer__links {
        justify-content: flex-start;
        gap: var(--space-12);
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-4);
    }

    .footer__legal {
        text-align: left;
        max-width: 100%;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta__buttons .btn {
        width: 100%;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-2xl: 1.75rem;
        --fs-xl: 1.375rem;
        --fs-lg: 1.25rem;
        --section-px: var(--space-4);
    }

    .hero__container,
    .hero__stats{
        max-width: 100%;
    }

    .hero__stats .stat__divider{
        display: none;
    }

    .hero__content {
        gap: var(--space-8);
    }

    .hero__visual {
        max-width: 320px;
    }

    .hero__emoji--2 {
        bottom: -5%;
        right: 20%;
    }

    .hero__emoji--3 {
        left: -5%;
        top: 35%;
    }

    .location-pill--1 {
        top: 20%;
        left: 5%;
    }

    .location-pill--2 {
        bottom: 30%;
        left: -2%;
    }

    .location-pill--3 {
        bottom: 15%;
        right: -2%;
    }

    .location-pill--4 {
        top: 50%;
        right: -2%;
    }

    .hero__stats {
        padding: var(--space-4);
    }

    .stat__value {
        font-size: var(--fs-xl);
    }
}

@media (max-width: 320px) {
    :root {
        --section-px: var(--space-3);
        --fs-2xl: 1.5rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}