/* =========================================================
   VIP CAR ESTÉTICA AUTOMOTIVA
   Arquivo: layout.css

   Responsável por:
   - Estrutura do Header
   - Hero
   - Grids principais
   - Serviços
   - Resultados
   - Sobre
   - Diferenciais
   - Galeria
   - CTA
   - FAQ
   - Localização
   - Footer

   IMPORTANTE:
   Aqui tratamos principalmente POSICIONAMENTO.
   Aparência de botões, cards e interações ficará
   principalmente em components.css.
========================================================= */


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: var(--z-header);

    width: 100%;
    min-height: var(--header-height);

    transition:
        background var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal),
        backdrop-filter var(--transition-normal);
}


/* =========================================================
   CONTEÚDO INTERNO DO HEADER
========================================================= */

.header-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: var(--header-height);

    gap: var(--space-8);
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    position: relative;

    display: inline-flex;

    align-items: center;

    flex-shrink: 0;

    z-index: 2;
}

.brand-logo {
    width: auto;
    height: 58px;

    object-fit: contain;

    transition:
        transform var(--transition-normal),
        opacity var(--transition-normal);
}


/* =========================================================
   NAVEGAÇÃO DESKTOP
========================================================= */

.desktop-nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: clamp(
        22px,
        2.5vw,
        42px
    );

    margin-left: auto;
}


/* =========================================================
   AÇÕES DO HEADER
========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: var(--space-4);

    flex-shrink: 0;
}


/* =========================================================
   BOTÃO MOBILE
========================================================= */

.menu-toggle {
    display: none;

    position: relative;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;

    border-radius: var(--radius-sm);
}

.menu-toggle span {
    position: absolute;

    width: 22px;
    height: 2px;

    background: var(--white);

    border-radius: var(--radius-pill);

    transition:
        transform var(--transition-normal),
        opacity var(--transition-normal),
        top var(--transition-normal);
}

.menu-toggle span:nth-child(1) {
    transform:
        translateY(-7px);
}

.menu-toggle span:nth-child(2) {
    transform:
        translateY(0);
}

.menu-toggle span:nth-child(3) {
    transform:
        translateY(7px);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.mobile-menu {
    display: none;

    position: fixed;

    top: var(--header-height-mobile);
    left: 0;

    width: 100%;

    height:
        calc(
            100vh -
            var(--header-height-mobile)
        );

    overflow-y: auto;

    background:
        rgba(3, 7, 13, 0.98);

    backdrop-filter:
        blur(var(--blur-lg));

    -webkit-backdrop-filter:
        blur(var(--blur-lg));

    border-top:
        1px solid
        var(--border-subtle);
}

.mobile-nav {
    display: flex;

    flex-direction: column;

    width: min(
        calc(100% - 40px),
        520px
    );

    margin-inline: auto;

    padding:
        var(--space-8)
        0
        var(--space-12);

    gap: var(--space-2);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 100svh;

    padding-top:
        calc(
            var(--header-height) +
            var(--space-10)
        );

    overflow: hidden;

    isolation: isolate;
}


/* =========================================================
   MÍDIA DO HERO
========================================================= */

.hero-media {
    position: absolute;
    inset: 0;

    z-index: -5;

    width: 100%;
    height: 100%;
}

.hero-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center center;
}


/* =========================================================
   OVERLAY HERO
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(3, 7, 13, 0.98) 0%,
            rgba(3, 7, 13, 0.92) 32%,
            rgba(3, 7, 13, 0.67) 57%,
            rgba(3, 7, 13, 0.20) 78%,
            rgba(3, 7, 13, 0.12) 100%
        );
}

.hero::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    z-index: -3;

    width: 100%;
    height: 35%;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--bg-primary)
        );
}


/* =========================================================
   GLOWS HERO
========================================================= */

.hero-glow {
    position: absolute;

    z-index: -2;

    pointer-events: none;

    border-radius: 50%;

    filter: blur(55px);
}

.hero-glow-blue {
    width: 520px;
    height: 520px;

    top: -180px;
    left: -230px;

    background:
        rgba(23, 71, 184, 0.17);
}

.hero-glow-gold {
    width: 350px;
    height: 350px;

    right: 8%;
    bottom: 10%;

    background:
        rgba(214, 168, 67, 0.09);
}


/* =========================================================
   CONTAINER HERO
========================================================= */

.hero-container {
    position: relative;

    display: flex;

    align-items: center;

    min-height:
        calc(
            100svh -
            var(--header-height)
        );
}


/* =========================================================
   CONTEÚDO HERO
========================================================= */

.hero-content {
    position: relative;

    z-index: var(--z-content);

    width: min(
        100%,
        850px
    );

    padding:
        var(--space-16)
        0
        var(--space-20);
}


/* =========================================================
   BADGE HERO
========================================================= */

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    margin-bottom:
        var(--space-6);

    padding:
        9px
        15px;

    border:
        1px solid
        rgba(214, 168, 67, 0.26);

    border-radius:
        var(--radius-pill);

    background:
        rgba(7, 16, 27, 0.52);

    backdrop-filter:
        blur(var(--blur-sm));

    -webkit-backdrop-filter:
        blur(var(--blur-sm));

    color:
        var(--text-secondary);

    font-size:
        var(--font-size-sm);

    font-weight:
        var(--font-weight-medium);
}


/* =========================================================
   TÍTULO HERO
========================================================= */

.hero h1 {
    max-width: 900px;

    text-wrap: balance;
}


/* =========================================================
   DESCRIÇÃO HERO
========================================================= */

.hero-description {
    max-width: 690px;

    margin-top:
        var(--space-6);

    font-size:
        clamp(
            1rem,
            1.5vw,
            1.25rem
        );

    color:
        var(--text-secondary);
}


/* =========================================================
   AÇÕES HERO
========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: var(--space-4);

    margin-top:
        var(--space-8);
}


/* =========================================================
   FEATURES HERO
========================================================= */

.hero-features {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap:
        var(--space-4)
        var(--space-8);

    margin-top:
        var(--space-10);
}

.hero-feature {
    display: flex;

    align-items: center;

    gap: 10px;

    color:
        var(--text-muted);

    font-size:
        var(--font-size-sm);
}

.hero-feature-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(214, 168, 67, 0.34);

    border-radius: 50%;

    background:
        rgba(214, 168, 67, 0.08);

    color:
        var(--vip-gold-light);

    font-size:
        0.72rem;

    font-weight:
        var(--font-weight-bold);
}


/* =========================================================
   INDICADOR DE SCROLL
========================================================= */

.scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 34px;

    z-index: var(--z-content);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    transform:
        translateX(-50%);

    color:
        var(--text-muted);

    font-size:
        var(--font-size-xs);

    letter-spacing:
        var(--letter-spacing-wider);

    text-transform:
        uppercase;
}

.scroll-mouse {
    position: relative;

    display: block;

    width: 25px;
    height: 40px;

    border:
        1px solid
        rgba(255, 255, 255, 0.30);

    border-radius:
        var(--radius-pill);
}

.scroll-mouse span {
    position: absolute;

    top: 8px;
    left: 50%;

    width: 3px;
    height: 7px;

    transform:
        translateX(-50%);

    background:
        var(--vip-gold-light);

    border-radius:
        var(--radius-pill);
}


/* =========================================================
   MARQUEE
========================================================= */

.service-marquee {
    position: relative;

    z-index: var(--z-content);

    overflow: hidden;

    border-top:
        1px solid
        var(--border-subtle);

    border-bottom:
        1px solid
        var(--border-subtle);

    background:
        rgba(5, 11, 19, 0.96);
}

.marquee-track {
    display: flex;

    width: max-content;

    min-width: 100%;
}

.marquee-content {
    display: flex;

    align-items: center;

    flex-shrink: 0;

    gap: var(--space-8);

    padding:
        22px
        var(--space-8);

    white-space: nowrap;
}

.marquee-content span {
    color:
        var(--text-secondary);

    font-family:
        var(--font-display);

    font-size:
        var(--font-size-sm);

    font-weight:
        var(--font-weight-semibold);

    letter-spacing:
        var(--letter-spacing-wide);

    text-transform:
        uppercase;
}

.marquee-content .marquee-dot {
    color:
        var(--vip-gold);

    font-size:
        1.2rem;
}


/* =========================================================
   SERVIÇOS
========================================================= */

.services-section {
    position: relative;
}

.services-section::before {
    content: "";

    position: absolute;

    top: 7%;
    right: -200px;

    width: 500px;
    height: 500px;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(23, 71, 184, 0.09),
            transparent 68%
        );
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: var(--space-5);
}

.services-footer {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-top:
        var(--space-12);
}


/* =========================================================
   RESULTADOS
========================================================= */

.results-section {
    position: relative;

    border-top:
        1px solid
        var(--border-subtle);

    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(214, 168, 67, 0.055),
            transparent 32%
        ),
        var(--bg-secondary);
}

.results-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(260px, 0.75fr);

    align-items: end;

    gap: var(--space-12);

    margin-bottom:
        var(--space-12);
}

.results-heading .section-header {
    margin-bottom: 0;
}

.results-intro {
    max-width: 520px;

    justify-self: end;

    color:
        var(--text-muted);
}


/* =========================================================
   BEFORE AFTER
========================================================= */

.before-after {
    position: relative;

    width: 100%;
    min-height:
        clamp(
            420px,
            55vw,
            680px
        );

    overflow: hidden;

    border:
        1px solid
        var(--border-subtle);

    border-radius:
        var(--radius-xl);

    background:
        var(--gradient-card);

    box-shadow:
        var(--shadow-lg);
}

.before-after-placeholder {
    position: absolute;
    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: var(--space-4);

    padding: var(--space-8);

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(23, 71, 184, 0.10),
            transparent 48%
        );
}

.before-after-placeholder h3 {
    font-size:
        clamp(
            1.5rem,
            3vw,
            2.5rem
        );
}

.before-after-placeholder p {
    max-width: 560px;
}


/* =========================================================
   SOBRE
========================================================= */

.about-section {
    position: relative;

    overflow: hidden;
}

.about-section::before {
    content: "";

    position: absolute;

    left: -220px;
    bottom: 10%;

    width: 500px;
    height: 500px;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(23, 71, 184, 0.10),
            transparent 68%
        );
}

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.92fr);

    align-items: center;

    gap:
        clamp(
            50px,
            7vw,
            110px
        );
}


/* =========================================================
   IMAGENS SOBRE
========================================================= */

.about-media {
    position: relative;

    min-height:
        640px;
}

.about-image-main {
    position: absolute;

    top: 0;
    left: 0;

    width: 82%;
    height: 78%;

    overflow: hidden;

    border-radius:
        var(--radius-xl);

    box-shadow:
        var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-image-detail {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 52%;
    height: 43%;

    overflow: hidden;

    border:
        8px solid
        var(--bg-primary);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-lg);
}

.about-image-detail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   CARD LOCALIZAÇÃO SOBRE
========================================================= */

.about-location-card {
    position: absolute;

    left: 5%;
    bottom: 8%;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: var(--space-3);

    max-width: 260px;

    padding:
        15px
        18px;

    background:
        rgba(3, 7, 13, 0.88);

    border:
        1px solid
        rgba(214, 168, 67, 0.22);

    border-radius:
        var(--radius-md);

    backdrop-filter:
        blur(var(--blur-md));

    -webkit-backdrop-filter:
        blur(var(--blur-md));

    box-shadow:
        var(--shadow-lg);
}

.about-location-card img {
    width: 22px;
    height: 22px;

    flex-shrink: 0;
}

.about-location-card div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.about-location-card strong {
    color:
        var(--white);

    font-size:
        var(--font-size-sm);
}

.about-location-card span {
    color:
        var(--text-muted);

    font-size:
        var(--font-size-xs);
}


/* =========================================================
   CONTEÚDO SOBRE
========================================================= */

.about-content {
    position: relative;

    z-index: var(--z-content);
}

.about-content h2 {
    margin-bottom:
        var(--space-6);
}

.about-content > p + p {
    margin-top:
        var(--space-4);
}


/* =========================================================
   BENEFÍCIOS SOBRE
========================================================= */

.about-benefits {
    display: flex;

    flex-direction: column;

    gap: var(--space-5);

    margin-top:
        var(--space-8);
}

.about-benefit {
    display: grid;

    grid-template-columns:
        34px
        minmax(0, 1fr);

    gap: var(--space-4);

    align-items: start;
}

.about-check {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border:
        1px solid
        rgba(214, 168, 67, 0.32);

    border-radius:
        var(--radius-circle);

    background:
        rgba(214, 168, 67, 0.08);

    color:
        var(--vip-gold-light);

    font-weight:
        var(--font-weight-bold);
}

.about-benefit strong {
    display: block;

    margin-bottom:
        4px;

    color:
        var(--white);

    font-family:
        var(--font-display);

    font-weight:
        var(--font-weight-semibold);
}

.about-benefit p {
    font-size:
        var(--font-size-sm);

    color:
        var(--text-muted);
}


/* =========================================================
   AÇÕES SOBRE
========================================================= */

.about-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap:
        var(--space-5);

    margin-top:
        var(--space-8);
}


/* =========================================================
   DIFERENCIAIS
========================================================= */

.benefits-section {
    position: relative;

    border-top:
        1px solid
        var(--border-subtle);

    border-bottom:
        1px solid
        var(--border-subtle);

    background:
        rgba(7, 16, 27, 0.62);
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 0;
}


/* =========================================================
   GALERIA
========================================================= */

.gallery-section {
    position: relative;
}

.gallery-header {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: var(--space-8);

    margin-bottom:
        var(--space-12);
}

.gallery-header .section-header {
    margin-bottom: 0;
}


/* =========================================================
   GRID GALERIA
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    grid-auto-rows:
        clamp(
            200px,
            21vw,
            320px
        );

    gap: var(--space-4);
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        var(--border-subtle);

    border-radius:
        var(--radius-lg);

    background:
        var(--bg-card);
}

.gallery-item-large {
    grid-column:
        span 2;

    grid-row:
        span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   OVERLAY GALERIA
========================================================= */

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: flex-end;

    padding:
        var(--space-6);

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(3, 7, 13, 0.90)
        );
}

.gallery-overlay span {
    margin-bottom:
        4px;

    color:
        var(--vip-gold-light);

    font-size:
        var(--font-size-sm);

    font-weight:
        var(--font-weight-semibold);

    letter-spacing:
        var(--letter-spacing-wide);

    text-transform:
        uppercase;
}

.gallery-overlay strong {
    color:
        var(--white);

    font-family:
        var(--font-display);

    font-size:
        var(--font-size-xl);
}


/* =========================================================
   PLACEHOLDER GALERIA
========================================================= */

.gallery-placeholder {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: var(--space-6);

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(23, 71, 184, 0.12),
            transparent 60%
        ),
        var(--bg-card);
}

.gallery-placeholder span {
    color:
        var(--text-muted);

    font-size:
        var(--font-size-sm);

    text-transform:
        uppercase;

    letter-spacing:
        var(--letter-spacing-wide);
}

.gallery-placeholder strong {
    margin-top:
        4px;

    color:
        var(--vip-gold-light);

    font-family:
        var(--font-display);

    font-size:
        var(--font-size-xl);
}


/* =========================================================
   CTA
========================================================= */

.contact-cta {
    position: relative;
}

.contact-cta-box {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(260px, 0.6fr);

    align-items: center;

    gap: var(--space-12);

    overflow: hidden;

    padding:
        clamp(
            36px,
            6vw,
            72px
        );

    border:
        1px solid
        rgba(214, 168, 67, 0.22);

    border-radius:
        var(--radius-xl);

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(23, 71, 184, 0.17),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(10, 21, 35, 0.98),
            rgba(3, 7, 13, 0.98)
        );

    box-shadow:
        var(--shadow-xl);
}

.contact-cta-decoration {
    position: absolute;

    top: -140px;
    right: -140px;

    width: 380px;
    height: 380px;

    pointer-events: none;

    border-radius: 50%;

    border:
        1px solid
        rgba(214, 168, 67, 0.12);

    box-shadow:
        0 0 90px
        rgba(214, 168, 67, 0.08);
}

.contact-cta-decoration::before,
.contact-cta-decoration::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(
            -50%,
            -50%
        );

    border-radius: 50%;

    border:
        1px solid
        rgba(214, 168, 67, 0.10);
}

.contact-cta-decoration::before {
    width: 76%;
    height: 76%;
}

.contact-cta-decoration::after {
    width: 50%;
    height: 50%;
}

.contact-cta-content {
    position: relative;

    z-index: 2;
}

.contact-cta-content h2 {
    max-width: 760px;
}

.contact-cta-content p {
    max-width: 680px;

    margin-top:
        var(--space-5);
}

.contact-cta-action {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: var(--space-4);
}

.contact-cta-action > span {
    color:
        var(--text-muted);

    font-size:
        var(--font-size-sm);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    position: relative;

    background:
        linear-gradient(
            180deg,
            var(--bg-primary),
            var(--bg-secondary)
        );
}

.faq-list {
    display: flex;

    flex-direction: column;

    gap: var(--space-3);

    margin-top:
        var(--space-10);
}


/* =========================================================
   LOCALIZAÇÃO
========================================================= */

.location-section {
    position: relative;

    overflow: hidden;
}

.location-section::before {
    content: "";

    position: absolute;

    right: -250px;
    bottom: -250px;

    width: 560px;
    height: 560px;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(23, 71, 184, 0.11),
            transparent 66%
        );
}

.location-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    align-items: stretch;

    gap:
        clamp(
            40px,
            6vw,
            90px
        );
}


/* =========================================================
   INFO LOCALIZAÇÃO
========================================================= */

.location-content {
    display: flex;

    flex-direction: column;

    justify-content: center;
}

.location-content > p {
    max-width: 580px;

    margin-top:
        var(--space-5);
}


/* =========================================================
   LISTA LOCALIZAÇÃO
========================================================= */

.location-info-list {
    display: flex;

    flex-direction: column;

    gap: var(--space-5);

    margin-top:
        var(--space-8);
}

.location-info {
    display: grid;

    grid-template-columns:
        46px
        minmax(0, 1fr);

    align-items: center;

    gap: var(--space-4);
}

.location-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border:
        1px solid
        rgba(214, 168, 67, 0.22);

    border-radius:
        var(--radius-md);

    background:
        rgba(214, 168, 67, 0.06);
}

.location-icon img {
    width: 21px;
    height: 21px;
}

.location-info div:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.location-info span {
    color:
        var(--text-muted);

    font-size:
        var(--font-size-xs);

    text-transform:
        uppercase;

    letter-spacing:
        var(--letter-spacing-wide);
}

.location-info strong {
    color:
        var(--white);

    font-size:
        var(--font-size-md);

    font-weight:
        var(--font-weight-semibold);
}

.location-info small {
    color:
        var(--text-muted);

    font-size:
        var(--font-size-sm);
}


/* =========================================================
   AÇÕES LOCALIZAÇÃO
========================================================= */

.location-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: var(--space-4);

    margin-top:
        var(--space-8);
}


/* =========================================================
   MAPA
========================================================= */

.location-map {
    position: relative;

    min-height: 590px;

    overflow: hidden;

    border:
        1px solid
        var(--border-subtle);

    border-radius:
        var(--radius-xl);

    box-shadow:
        var(--shadow-xl);
}

.location-map iframe {
    width: 100%;
    height: 100%;

    min-height: 590px;

    filter:
        grayscale(0.25)
        contrast(1.05)
        saturate(0.82);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    padding:
        var(--space-20)
        0
        var(--space-8);

    border-top:
        1px solid
        var(--border-subtle);

    background:
        #02050a;
}


/* =========================================================
   FOOTER PRINCIPAL
========================================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        1.6fr
        0.8fr
        1fr
        1fr;

    gap:
        clamp(
            32px,
            5vw,
            80px
        );

    padding-bottom:
        var(--space-16);
}

.footer-brand img {
    width: auto;
    height: 64px;

    margin-bottom:
        var(--space-5);
}

.footer-brand > p {
    max-width: 390px;

    color:
        var(--text-muted);

    font-size:
        var(--font-size-sm);
}


/* =========================================================
   SOCIAL FOOTER
========================================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: var(--space-3);

    margin-top:
        var(--space-6);
}


/* =========================================================
   COLUNAS FOOTER
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: var(--space-3);
}

.footer-column h3 {
    margin-bottom:
        var(--space-2);

    color:
        var(--white);

    font-size:
        var(--font-size-base);

    font-weight:
        var(--font-weight-semibold);
}

.footer-column address {
    color:
        var(--text-muted);

    font-size:
        var(--font-size-sm);

    font-style: normal;

    line-height:
        var(--line-height-relaxed);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: var(--space-6);

    padding-top:
        var(--space-7);

    border-top:
        1px solid
        var(--border-subtle);
}

.footer-bottom p {
    color:
        var(--text-muted);

    font-size:
        var(--font-size-xs);
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: var(--z-floating);

    display: flex;

    align-items: center;

    gap: var(--space-3);
}

.floating-whatsapp-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    flex-shrink: 0;

    border-radius:
        var(--radius-circle);

    background:
        var(--whatsapp);

    box-shadow:
        var(--shadow-whatsapp);
}

.floating-whatsapp-icon img {
    width: 28px;
    height: 28px;
}


/* =========================================================
   TOOLTIP WHATSAPP
========================================================= */

.floating-whatsapp-tooltip {
    display: flex;

    align-items: center;

    min-height: 42px;

    padding:
        0
        15px;

    border:
        1px solid
        var(--border-subtle);

    border-radius:
        var(--radius-pill);

    background:
        rgba(3, 7, 13, 0.93);

    backdrop-filter:
        blur(var(--blur-md));

    -webkit-backdrop-filter:
        blur(var(--blur-md));

    color:
        var(--white);

    font-size:
        var(--font-size-sm);

    font-weight:
        var(--font-weight-medium);

    box-shadow:
        var(--shadow-md);
}


/* =========================================================
   NOSCRIPT
========================================================= */

.noscript-message {
    position: fixed;

    left: 50%;
    bottom: 20px;

    z-index:
        calc(
            var(--z-loader) + 10
        );

    width:
        min(
            calc(100% - 32px),
            640px
        );

    padding:
        16px
        20px;

    transform:
        translateX(-50%);

    background:
        var(--vip-gold);

    color:
        var(--text-dark);

    border-radius:
        var(--radius-md);

    text-align: center;

    font-size:
        var(--font-size-sm);

    font-weight:
        var(--font-weight-semibold);

    box-shadow:
        var(--shadow-lg);
}


/* =========================================================
   TABLET GRANDE
========================================================= */

@media (max-width: 1180px) {

    .desktop-nav {
        gap: 24px;
    }

    .header-whatsapp {
        padding-inline:
            18px;
    }

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

    .about-grid {
        gap: 55px;
    }

    .footer-main {
        grid-template-columns:
            1.4fr
            0.8fr
            1fr;
    }

    .footer-main .footer-column:last-child {
        grid-column:
            2 / -1;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .site-header {
        min-height:
            var(--header-height-mobile);
    }

    .header-inner {
        min-height:
            var(--header-height-mobile);
    }

    .brand-logo {
        height: 50px;
    }

    .desktop-nav {
        display: none;
    }

    .header-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;

        transform:
            translateX(100%);

        visibility: hidden;

        opacity: 0;

        transition:
            transform var(--transition-smooth),
            visibility var(--transition-normal),
            opacity var(--transition-normal);
    }

    .mobile-menu.is-open {
        transform:
            translateX(0);

        visibility: visible;

        opacity: 1;
    }

    .hero {
        padding-top:
            var(--header-height-mobile);
    }

    .hero-container {
        min-height:
            calc(
                100svh -
                var(--header-height-mobile)
            );
    }

    .results-heading {
        grid-template-columns:
            1fr;

        gap: var(--space-6);
    }

    .results-intro {
        justify-self: start;
    }

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

    .about-media {
        min-height:
            620px;
    }

    .about-content {
        max-width: 760px;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        grid-auto-rows:
            260px;
    }

    .contact-cta-box {
        grid-template-columns:
            1fr;
    }

    .contact-cta-action {
        align-items:
            flex-start;
    }

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

    .location-content {
        max-width: 720px;
    }

    .location-map {
        min-height:
            500px;
    }

    .location-map iframe {
        min-height:
            500px;
    }

    .footer-main {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .footer-main .footer-column:last-child {
        grid-column:
            auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {
        min-height:
            100svh;

        align-items:
            flex-end;
    }

    .hero-media img {
        object-position:
            62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 7, 13, 0.32) 0%,
                rgba(3, 7, 13, 0.57) 30%,
                rgba(3, 7, 13, 0.92) 62%,
                rgba(3, 7, 13, 1) 100%
            );
    }

    .hero-container {
        align-items:
            flex-end;
    }

    .hero-content {
        width: 100%;

        padding:
            140px
            0
            105px;
    }

    .hero-description {
        max-width: 560px;
    }

    .hero-actions {
        flex-direction: column;

        align-items:
            stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-features {
        display: grid;

        grid-template-columns:
            1fr;

        gap: var(--space-3);

        margin-top:
            var(--space-8);
    }

    .scroll-indicator {
        display: none;
    }

    .marquee-content {
        gap: var(--space-6);

        padding:
            18px
            var(--space-6);
    }

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

    .before-after {
        min-height:
            420px;

        border-radius:
            var(--radius-lg);
    }

    .about-media {
        min-height:
            500px;
    }

    .about-image-main {
        width: 92%;
        height: 72%;
    }

    .about-image-detail {
        width: 57%;
        height: 40%;

        border-width:
            5px;
    }

    .about-location-card {
        left: 3%;
        bottom: 7%;
    }

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

    .gallery-header {
        flex-direction: column;

        align-items:
            flex-start;

        gap: var(--space-4);
    }

    .gallery-grid {
        grid-template-columns:
            1fr;

        grid-auto-rows:
            300px;
    }

    .gallery-item-large {
        grid-column:
            auto;

        grid-row:
            auto;
    }

    .contact-cta-box {
        padding:
            32px
            24px;

        border-radius:
            var(--radius-lg);
    }

    .location-map {
        min-height:
            430px;

        border-radius:
            var(--radius-lg);
    }

    .location-map iframe {
        min-height:
            430px;
    }

    .footer-main {
        grid-template-columns:
            1fr;

        gap:
            var(--space-10);
    }

    .footer-bottom {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            var(--space-3);
    }

    .footer-location {
        display: none;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
    }

    .floating-whatsapp-tooltip {
        display: none;
    }

    .floating-whatsapp-icon {
        width: 56px;
        height: 56px;
    }
}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 480px) {

    .brand-logo {
        height: 44px;
    }

    .hero-content {
        padding-top:
            115px;
    }

    .hero-badge {
        font-size:
            0.76rem;
    }

    .about-media {
        min-height:
            410px;
    }

    .about-image-main {
        width: 100%;
        height: 72%;
    }

    .about-image-detail {
        right: 4%;

        width: 58%;
        height: 37%;
    }

    .about-location-card {
        max-width: 225px;

        padding:
            12px
            14px;
    }

    .gallery-grid {
        grid-auto-rows:
            250px;
    }

    .location-info {
        grid-template-columns:
            42px
            minmax(0, 1fr);
    }

    .location-icon {
        width: 42px;
        height: 42px;
    }

    .location-actions {
        flex-direction: column;

        align-items:
            stretch;
    }

    .location-actions .btn {
        width: 100%;
    }
}