        :root {
            /* Paleta Base Rose Gold (Identidade Principal) */
            --rose-gold: #B76E79;
            --rose-gold-deep: #9A5560;
            --rose-gold-light: #DDA7A5; 
            --champagne: #F4E8E1;
            
            /* Paleta Base Escura */
            --gunmetal-dark: #18191C;
            --gunmetal: #24262B;
            --deep-rose: #231C1E; 
            
            /* Paleta Suspiro Visual (Quebra Cognitiva) */
            --blush-cream: #FAF3F0; 
            
            /* Detalhes Ouro */
            --gold: #D4AF37;
            --gold-light: #F9F1D8;

            /* Gradientes */
            --gradient-2026: linear-gradient(135deg, #B76E79 0%, #DDA7A5 100%);
            --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F9F1D8 50%, #D4AF37 100%);
            
            /* Padrão Visagista */
            --lash-pattern: repeating-linear-gradient(45deg, rgba(221, 167, 165, 0.04) 0px, rgba(221, 167, 165, 0.04) 1px, transparent 1px, transparent 15px), 
                            repeating-linear-gradient(-25deg, rgba(221, 167, 165, 0.02) 0px, rgba(221, 167, 165, 0.02) 1px, transparent 1px, transparent 20px);
        }

        body, html {
            margin: 0; padding: 0;
            background-color: var(--gunmetal-dark);
            color: white;
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* DEVICE IQ */
        body.low-end-device .texto-espelhado, body.low-end-device .texto-espelhado-small {
            animation: none !important; background: none !important;
            color: var(--rose-gold-light) !important; -webkit-text-fill-color: var(--rose-gold-light) !important;
        }

        /* TEXTO ESPELHADO */
        .texto-espelhado {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 6vw, 4.5rem);
            line-height: 1.1; font-style: italic;
            background: linear-gradient(-45deg, var(--rose-gold) 0%, var(--rose-gold-light) 25%, #FFFFFF 50%, var(--rose-gold-light) 75%, var(--rose-gold) 100%);
            background-size: 200% auto; color: transparent; -webkit-background-clip: text; background-clip: text;
            animation: brilho-liquido 4s linear infinite; text-shadow: 0 10px 30px rgba(183,110,121,0.2); 
        }
        
        .texto-espelhado-small {
            background: linear-gradient(-45deg, var(--rose-gold) 0%, var(--rose-gold-light) 25%, #FFFFFF 50%, var(--rose-gold-light) 75%, var(--rose-gold) 100%);
            background-size: 200% auto; color: transparent; -webkit-background-clip: text; background-clip: text;
            animation: brilho-liquido 4s linear infinite;
        }

        @keyframes brilho-liquido {
            0% { background-position: 200% center; }
            100% { background-position: 0% center; }
        }

        /* CONFIGURAÇÕES GERAIS SPA */
        .protocol-section { display: none; opacity: 0; transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
        .protocol-section.active { display: block; opacity: 1; }
        #main-content { transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
        .playfair { font-family: 'Playfair Display', serif; }
        .text-gradient { background: var(--gradient-2026); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        /* Heroes dos protocolos — sob o menu fixo, altura compacta */
        :root {
            --site-nav-height: 3.25rem;
        }

        @media (min-width: 768px) {
            :root {
                --site-nav-height: 3.75rem;
            }
        }

        .banner-puro {
            width: 100%;
            height: clamp(120px, 26vw, 300px);
            margin-top: 0;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center 12%;
            display: block;
            position: relative;
            z-index: 1;
            border: none !important;
            overflow: hidden;

            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
        }

        .banner-puro img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            object-position: center 12%;
        }

        .banner-puro.protocol-hero-offset {
            margin-top: 0 !important;
        }

        #monyliss > figure.banner-puro {
            background-position: center 8%;
        }

        #monyliss > figure.banner-puro img {
            object-position: center 8%;
        }

        #sobrancelhas > figure.banner-puro {
            background-position: center 10%;
        }

        #sobrancelhas > figure.banner-puro img {
            object-position: center 10%;
        }

        #cilios > figure.banner-puro {
            /* Olhar centralizado na faixa entre menu fixo e dissolução superior */
            background-position: center 32%;
        }

        #cilios > figure.banner-puro img {
            object-position: center 32%;
        }

        #facial > figure.banner-puro {
            background-position: 28% 42%;
        }

        #facial > figure.banner-puro img {
            object-position: 28% 42%;
        }

        #monyliss .monyliss-hero-header,
        #sobrancelhas .sobrancelhas-hero-header,
        #cilios .cilios-hero-header,
        #facial .facial-hero-header {
            padding-top: 1.25rem;
        }

        @media (min-width: 768px) {
            #monyliss .monyliss-hero-header,
            #sobrancelhas .sobrancelhas-hero-header,
            #cilios .cilios-hero-header,
            #facial .facial-hero-header {
                padding-top: 1.75rem;
            }
        }

        @media (max-width: 767px) {
            :root {
                --protocol-hero-top-clearance: calc(var(--site-nav-height) + env(safe-area-inset-top, 0px));
            }

            body.has-promo-banner {
                --protocol-hero-top-clearance: calc(
                    var(--promo-banner-height, 36px) + var(--site-nav-height) + env(safe-area-inset-top, 0px)
                );
            }

            .banner-puro {
                height: clamp(108px, 30vw, 220px);
                -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
                mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
            }

            /* Alisamento, Facial e Sobrancelhas — hero abaixo do menu fixo (cílios intocado) */
            #monyliss > figure.banner-puro,
            #sobrancelhas > figure.banner-puro,
            #facial > figure.banner-puro {
                margin-top: var(--protocol-hero-top-clearance) !important;
            }

            #cilios > figure.banner-puro {
                background-position: center 28%;
            }

            #cilios > figure.banner-puro img {
                object-position: center 28%;
            }

            #monyliss > figure.banner-puro {
                background-position: center 32%;
            }

            #monyliss > figure.banner-puro img {
                object-position: center 32%;
            }

            #sobrancelhas > figure.banner-puro {
                background-position: center 30%;
            }

            #sobrancelhas > figure.banner-puro img {
                object-position: center 30%;
            }

            #facial > figure.banner-puro {
                background-position: 28% 62%;
            }

            #facial > figure.banner-puro img {
                object-position: 28% 62%;
            }

            /* Títulos sobre a dissolução inferior do banner */
            #monyliss .monyliss-hero-header,
            #sobrancelhas .sobrancelhas-hero-header,
            #facial .facial-hero-header {
                padding-top: 0;
                margin-top: -1.35rem;
                padding-bottom: 1rem;
            }

            #cilios .cilios-hero-header {
                padding-top: 0;
                margin-top: -2.25rem;
                padding-bottom: 1rem;
            }

            #monyliss .monyliss-hero-header .line-accent,
            #sobrancelhas .sobrancelhas-hero-header .line-accent,
            #cilios .cilios-hero-header .line-accent,
            #facial .facial-hero-header .line-accent {
                margin-bottom: 0.75rem;
                height: 28px;
            }

            #monyliss .monyliss-hero-header h1,
            #sobrancelhas .sobrancelhas-hero-header h1,
            #cilios .cilios-hero-header h1,
            #facial .facial-hero-header h1 {
                margin-bottom: 0.75rem;
            }
        }

        .line-accent { width: 1px; height: 40px; background: var(--gradient-2026); margin: 0 auto; }

        /* Facial & Labial — paleta luminosa (pele / viço) */
        #facial {
            --facial-pearl: #F5F4F0;
            --facial-champagne: #D4C3B3;
            --facial-nude: #C5A880;
        }
        
        /* WhatsApp flutuante + balão de localização */
        .wa-float-widget {
            position: fixed;
            right: 1.25rem;
            bottom: 2rem;
            z-index: 62;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.7rem;
            pointer-events: none;
        }

        .wa-float-widget > * {
            pointer-events: auto;
        }

        .wa-float-widget__btn {
            text-decoration: none;
        }

        .wa-location-tooltip {
            position: relative;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            animation: wa-tooltip-presence 16s cubic-bezier(0.45, 0.05, 0.25, 1) infinite;
            animation-delay: 2.5s;
            will-change: opacity, transform;
        }

        .wa-location-tooltip__inner {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.5rem 0.85rem;
            background: rgba(24, 25, 28, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(183, 110, 121, 0.62);
            border-radius: 9999px;
            box-shadow:
                0 10px 28px rgba(0, 0, 0, 0.38),
                0 0 0 1px rgba(183, 110, 121, 0.08) inset;
            animation: wa-tooltip-float 3.8s ease-in-out infinite;
            animation-delay: 2.5s;
        }

        .wa-location-tooltip__icon {
            color: var(--rose-gold);
            font-size: 0.62rem;
            line-height: 1;
            filter: drop-shadow(0 0 6px rgba(183, 110, 121, 0.35));
        }

        .wa-location-tooltip__text {
            color: var(--rose-gold);
            font-size: 8px;
            font-weight: 500;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            line-height: 1.2;
            white-space: nowrap;
        }

        .wa-location-tooltip__tail {
            position: absolute;
            right: 1.35rem;
            bottom: -4px;
            width: 7px;
            height: 7px;
            background: rgba(24, 25, 28, 0.94);
            border-right: 1px solid rgba(183, 110, 121, 0.62);
            border-bottom: 1px solid rgba(183, 110, 121, 0.62);
            transform: rotate(45deg);
            pointer-events: none;
        }

        @keyframes wa-tooltip-presence {
            0%, 14% {
                opacity: 0;
                visibility: hidden;
                transform: translateY(8px) scale(0.98);
            }
            20%, 24% {
                opacity: 0.55;
                visibility: visible;
                transform: translateY(4px) scale(0.99);
            }
            30%, 58% {
                opacity: 1;
                visibility: visible;
                transform: translateY(0) scale(1);
            }
            64%, 70% {
                opacity: 0.45;
                visibility: visible;
                transform: translateY(-3px) scale(0.99);
            }
            76%, 100% {
                opacity: 0;
                visibility: hidden;
                transform: translateY(-7px) scale(0.98);
            }
        }

        @keyframes wa-tooltip-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-4px); }
        }

        @media (max-width: 767px) {
            .wa-float-widget {
                right: 0.85rem;
                bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
                gap: 0;
            }

            .wa-location-tooltip__inner {
                padding: 0.42rem 0.7rem;
            }

            .wa-location-tooltip__text {
                font-size: 7px;
                letter-spacing: 0.12em;
            }

            .wa-location-tooltip__tail {
                right: 1rem;
            }
        }

        @media (max-width: 360px) {
            .wa-location-tooltip__text {
                white-space: normal;
                max-width: 8.75rem;
                text-align: left;
            }
        }

        body.has-promo-banner .wa-float-widget {
            bottom: calc(2rem + var(--promo-banner-height, 36px));
        }

        @media (max-width: 767px) {
            body.has-promo-banner .wa-float-widget {
                bottom: calc(4.35rem + var(--promo-banner-height, 36px) + env(safe-area-inset-bottom, 0px));
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .wa-location-tooltip {
                animation: none;
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .wa-location-tooltip__inner {
                animation: none;
            }
        }

        .wa-float-desktop { animation: pulse 2s infinite; }
        .wa-bar-mobile {
            background: linear-gradient(90deg, rgba(183, 110, 121, 0.85) 0%, rgba(221, 167, 165, 0.85) 100%);
            backdrop-filter: blur(12px); border-top: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-glow-hover:hover span {
            color: #FFFFFF !important; text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px var(--rose-gold);
        }

        .border-joia {
            border: 1px solid var(--gold); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.1);
        }

        /* Selos de Confiança */
        .selo-luxo {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 6px 12px; border: 1px solid rgba(183, 110, 121, 0.3);
            border-radius: 2px; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
            color: var(--champagne); background: rgba(24, 25, 28, 0.6); backdrop-filter: blur(5px);
        }
        .selo-luxo i { color: var(--rose-gold); font-size: 11px; }

        /* Diploma Digital — selo de autoridade + lightbox */
        .certificado-digital-wrap {
            width: 100%;
        }

        .certificado-digital {
            display: flex;
            align-items: center;
            gap: 1rem;
            width: 100%;
            max-width: 28rem;
            margin-inline: auto;
            padding: 0.85rem 1rem;
            border: 1px solid rgba(183, 110, 121, 0.35);
            border-radius: 2px;
            background: rgba(24, 25, 28, 0.72);
            backdrop-filter: blur(8px);
            text-align: left;
            cursor: pointer;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }

        .certificado-digital:hover,
        .certificado-digital:focus-visible {
            border-color: rgba(183, 110, 121, 0.65);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(183, 110, 121, 0.15);
            transform: translateY(-1px);
            outline: none;
        }

        .certificado-digital__frame {
            position: relative;
            flex: 0 0 auto;
            width: 5.5rem;
            border: 1px solid rgba(212, 195, 179, 0.35);
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
        }

        .certificado-digital__thumb {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 1.41 / 1;
            object-fit: cover;
            object-position: center top;
        }

        .certificado-digital__zoom {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.45);
            color: var(--champagne);
            font-size: 0.85rem;
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .certificado-digital:hover .certificado-digital__zoom,
        .certificado-digital:focus-visible .certificado-digital__zoom {
            opacity: 1;
        }

        .certificado-digital__copy {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            min-width: 0;
        }

        .certificado-digital__kicker {
            font-size: 8px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--rose-gold);
            font-weight: 700;
        }

        .certificado-digital__title {
            font-family: 'Playfair Display', serif;
            font-size: 0.95rem;
            line-height: 1.35;
            color: var(--champagne);
            font-style: italic;
        }

        .certificado-digital__meta {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 0.04em;
        }

        .certificado-digital__hint {
            margin-top: 0.15rem;
            font-size: 8px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(183, 110, 121, 0.85);
        }

        .certificado-digital-floating {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            z-index: 25;
            width: 4.5rem;
            padding: 0;
            border: 1px solid rgba(183, 110, 121, 0.45);
            border-radius: 2px;
            background: rgba(5, 5, 5, 0.82);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .certificado-digital-floating img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 1.41 / 1;
            object-fit: cover;
            object-position: center top;
        }

        .certificado-digital-floating__lens {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.42);
            color: var(--champagne);
            font-size: 0.7rem;
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .certificado-digital-floating:hover,
        .certificado-digital-floating:focus-visible {
            transform: scale(1.04);
            border-color: rgba(183, 110, 121, 0.8);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
            outline: none;
        }

        .certificado-digital-floating:hover .certificado-digital-floating__lens,
        .certificado-digital-floating:focus-visible .certificado-digital-floating__lens {
            opacity: 1;
        }

        .certificado-modal {
            position: fixed;
            inset: 0;
            z-index: 10200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            overscroll-behavior: contain;
        }

        .certificado-modal.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        .certificado-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.82);
            backdrop-filter: blur(6px);
        }

        .certificado-modal__panel {
            position: relative;
            width: min(100%, 56rem);
            max-height: calc(100dvh - 2rem);
            overflow: auto;
            padding: 1.25rem 1rem 1rem;
            border: 1px solid rgba(183, 110, 121, 0.28);
            border-radius: 0.5rem;
            background: rgba(24, 25, 28, 0.96);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
            transform: scale(0.96) translateY(10px);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .certificado-modal.is-open .certificado-modal__panel {
            transform: scale(1) translateY(0);
        }

        .certificado-modal__close {
            position: absolute;
            top: 0.65rem;
            right: 0.65rem;
            z-index: 2;
            width: 2.25rem;
            height: 2.25rem;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            color: rgba(183, 110, 121, 0.85);
            cursor: pointer;
            transition: color 0.25s ease, background 0.25s ease;
        }

        .certificado-modal__close:hover,
        .certificado-modal__close:focus-visible {
            color: var(--rose-gold);
            background: rgba(183, 110, 121, 0.12);
            outline: none;
        }

        .certificado-modal__title {
            margin: 0 2.5rem 0.85rem 0.25rem;
            font-size: 10px;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--rose-gold);
            font-weight: 700;
        }

        .certificado-modal__figure {
            margin: 0;
        }

        .certificado-modal__image {
            display: block;
            width: 100%;
            height: auto;
            border: 1px solid rgba(212, 195, 179, 0.18);
            border-radius: 2px;
            background: #fff;
        }

        .certificado-modal__caption {
            margin: 0.85rem 0.25rem 0;
            font-size: 11px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.55);
            text-align: center;
        }

        @media (min-width: 768px) {
            .certificado-digital-wrap {
                margin-inline: 0;
            }

            .certificado-digital {
                margin-inline: 0;
            }
        }

        @media (max-width: 640px) {
            .certificado-digital {
                padding: 0.75rem;
            }

            .certificado-digital__frame {
                width: 4.75rem;
            }

            .certificado-digital-floating {
                width: 3.75rem;
            }

            .certificado-modal {
                align-items: flex-end;
                padding: 0.75rem;
            }

            .certificado-modal__panel {
                max-height: calc(100dvh - 1.25rem);
            }
        }

        /* Facial & Labial — grid editorial Z-pattern */
        .facial-editorial {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
        }

        .facial-editorial::before {
            content: '';
            pointer-events: none;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(92%, 56rem);
            height: 12rem;
            background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(212, 195, 179, 0.07) 0%, transparent 72%);
        }

        .facial-editorial-row {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            padding: 3.5rem 0;
        }

        .facial-editorial-row + .facial-editorial-row {
            margin-top: 1rem;
        }

        @media (min-width: 1024px) {
            .facial-editorial-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                align-items: center;
                gap: 5rem 7rem;
                padding: 7rem 0;
            }

            .facial-editorial-row + .facial-editorial-row {
                margin-top: 2rem;
            }

            .facial-editorial-row--reverse .facial-editorial-media {
                order: 2;
            }

            .facial-editorial-row--reverse .facial-editorial-copy {
                order: 1;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .facial-editorial-row {
                gap: 2.5rem;
                padding: 4rem 0;
            }

            .facial-cta-btn {
                max-width: 22rem;
                margin-left: auto;
                margin-right: auto;
            }
        }

        .facial-editorial-media {
            margin: 0;
            width: 100%;
            position: relative;
        }

        .facial-editorial-media::after {
            content: '';
            pointer-events: none;
            position: absolute;
            inset: 0;
            border-radius: 2px;
            box-shadow: inset 0 0 0 1px rgba(212, 195, 179, 0.22);
            background: linear-gradient(145deg, rgba(245, 244, 240, 0.06) 0%, transparent 42%, transparent 100%);
        }

        .facial-editorial-media img {
            display: block;
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            object-position: center;
            border-radius: 2px;
            border: 1px solid rgba(197, 168, 128, 0.42);
            box-shadow:
                0 0 0 1px rgba(245, 244, 240, 0.04),
                0 18px 48px rgba(0, 0, 0, 0.35),
                0 0 32px rgba(212, 195, 179, 0.08);
        }

        .facial-editorial-copy {
            display: flex;
            flex-direction: column;
            max-width: 36rem;
            position: relative;
        }

        .facial-editorial-copy::before {
            content: '';
            display: block;
            width: 2.5rem;
            height: 1px;
            background: linear-gradient(90deg, var(--facial-nude), var(--facial-champagne), transparent);
            margin-bottom: 1.5rem;
            opacity: 0.85;
        }

        @media (min-width: 1024px) {
            .facial-editorial-row--reverse .facial-editorial-copy {
                margin-left: auto;
                text-align: left;
            }

            .facial-editorial-row:not(.facial-editorial-row--reverse) .facial-editorial-copy {
                margin-right: auto;
            }

            .facial-cta-btn {
                width: auto;
                align-self: flex-start;
                min-width: 14rem;
            }
        }

        .facial-benefits-label {
            font-size: 9px;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--facial-nude);
            margin-bottom: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .facial-benefits-label::before {
            content: '';
            flex: 0 0 1.75rem;
            height: 1px;
            background: linear-gradient(90deg, var(--facial-champagne), var(--facial-nude));
            opacity: 0.9;
        }

        .facial-benefits ul {
            list-style: none;
            padding: 0;
            margin: 0;
            border-left: 1px solid rgba(212, 195, 179, 0.22);
            padding-left: 1.1rem;
        }

        .facial-benefits li {
            position: relative;
            color: var(--facial-champagne);
            font-size: 0.875rem;
            font-weight: 300;
            line-height: 1.75;
            padding: 0.2rem 0;
        }

        .facial-benefits li::before {
            content: '';
            position: absolute;
            left: -1.1rem;
            top: 0.72rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--facial-pearl) 0%, var(--facial-nude) 70%);
            box-shadow: 0 0 8px rgba(212, 195, 179, 0.45);
            transform: translateX(-50%);
        }

        .facial-contra {
            letter-spacing: 0.02em;
        }

        .facial-cta-btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 1.05rem 2rem;
            border: 1px solid rgba(212, 195, 179, 0.55);
            border-radius: 2px;
            background: linear-gradient(180deg, rgba(212, 195, 179, 0.1) 0%, rgba(197, 168, 128, 0.05) 100%);
            color: var(--facial-pearl);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            text-decoration: none;
            box-shadow:
                0 0 0 1px rgba(245, 244, 240, 0.04) inset,
                0 0 28px rgba(212, 195, 179, 0.12);
            transition: color 0.4s ease, border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease, transform 0.35s ease;
        }

        .facial-cta-btn:hover {
            color: var(--gunmetal-dark);
            background: linear-gradient(180deg, rgba(245, 244, 240, 0.96) 0%, rgba(212, 195, 179, 0.92) 100%);
            border-color: rgba(245, 244, 240, 0.85);
            box-shadow:
                0 0 36px rgba(212, 195, 179, 0.35),
                0 0 0 1px rgba(245, 244, 240, 0.2) inset;
            transform: translateY(-1px);
        }

        /* Facial & Labial — refinamento mobile (foco em proporção e leitura) */
        @media (max-width: 767px) {
            #facial > figure.banner-puro {
                height: clamp(96px, 26vw, 168px);
            }

            #facial .facial-hero-header {
                margin-top: -1.1rem;
                padding-bottom: 0.75rem;
            }

            #facial .facial-hero-header .line-accent {
                height: 22px;
                margin-bottom: 0.5rem;
            }

            #facial .facial-editorial::before {
                height: 7rem;
            }

            #facial .facial-editorial-row {
                gap: 1.25rem;
                padding: 2rem 0;
            }

            #facial .facial-editorial-row + .facial-editorial-row {
                margin-top: 0.25rem;
            }

            #facial .facial-editorial-row:first-child {
                padding-top: 1.25rem;
            }

            #facial .facial-editorial-media {
                max-width: 16.5rem;
                margin-left: auto;
                margin-right: auto;
            }

            #facial .facial-editorial-media img {
                aspect-ratio: 4 / 4.5;
                max-height: 15.5rem;
                box-shadow:
                    0 0 0 1px rgba(245, 244, 240, 0.04),
                    0 12px 28px rgba(0, 0, 0, 0.28),
                    0 0 20px rgba(212, 195, 179, 0.06);
            }

            #facial .facial-editorial-copy {
                max-width: 100%;
            }

            #facial .facial-editorial-copy::before {
                width: 2rem;
                margin-bottom: 0.85rem;
            }

            #facial .facial-benefits-label {
                margin-bottom: 0.65rem;
                letter-spacing: 0.28em;
            }

            #facial .facial-benefits ul {
                padding-left: 0.9rem;
            }

            #facial .facial-benefits li {
                font-size: 0.8125rem;
                line-height: 1.55;
                padding: 0.1rem 0;
            }

            #facial .facial-cta-btn {
                max-width: 15.5rem;
                margin-left: auto;
                margin-right: auto;
                padding: 0.8rem 1.25rem;
                letter-spacing: 0.22em;
            }
        }

        @media (max-width: 380px) {
            #facial .facial-editorial-media {
                max-width: 14.5rem;
            }

            #facial .facial-editorial-media img {
                max-height: 13.5rem;
            }

            #facial .facial-editorial-row {
                padding: 1.65rem 0;
            }
        }

        .scrollbar-hide::-webkit-scrollbar { display: none; }
        .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

        @media (max-width: 767px) {
            .mobile-carousel-bleed {
                display: flex !important;
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                width: 100vw !important; /* Força o elemento a ocupar a tela toda */
                margin-left: 50% !important; /* Puxa para o centro */
                transform: translateX(-50%) !important; /* Compensa o offset */
                padding-left: 1.25rem; /* Margem interna inicial */
                padding-right: 1.25rem;
                padding-bottom: 1.5rem;
                gap: 1rem;
            }
            .mobile-carousel-bleed > * {
                flex: 0 0 80% !important; /* Mostra a pontinha do próximo card */
                scroll-snap-align: center;
            }
            .grid-desktop-only { display: block; }
        }

        /* Grelha para Desktop */
        @media (min-width: 768px) {
            .mobile-carousel-bleed {
                display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; width: 100%;
            }
            .mobile-carousel-bleed.cols-4 { grid-template-columns: repeat(4, 1fr); }
            .mobile-carousel-bleed.cols-3 { grid-template-columns: repeat(3, 1fr); }
            .grid-desktop-only { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }

        /* Menu Mobile Otimizado */
        #mobile-menu {
            transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
            opacity: 0; pointer-events: none; transform: translateY(-10px);
        }

        #mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        @media (max-width: 767px) {
            #mobile-menu.active {
                background: rgba(8, 9, 11, 0.96) !important;
                backdrop-filter: blur(24px) saturate(125%);
                -webkit-backdrop-filter: blur(24px) saturate(125%);
                box-shadow:
                    inset 0 0 0 1px rgba(183, 110, 121, 0.22),
                    inset 0 -40px 80px rgba(0, 0, 0, 0.35);
            }

            #mobile-menu.active .mobile-menu-item {
                position: relative;
                border: 1px solid rgba(183, 110, 121, 0.38);
                border-radius: 4px;
                background: linear-gradient(
                    165deg,
                    rgba(48, 50, 55, 0.88) 0%,
                    rgba(20, 21, 24, 0.96) 100%
                );
                box-shadow:
                    0 10px 28px rgba(0, 0, 0, 0.42),
                    0 2px 8px rgba(0, 0, 0, 0.28),
                    0 0 0 1px rgba(0, 0, 0, 0.35),
                    inset 0 1px 0 rgba(255, 255, 255, 0.07);
                color: var(--champagne);
                text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
                transition:
                    border-color 0.25s ease,
                    box-shadow 0.25s ease,
                    color 0.25s ease,
                    transform 0.2s ease;
            }

            #mobile-menu.active .mobile-menu-item::after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 1px;
                border-radius: 0 0 4px 4px;
                background: linear-gradient(90deg, transparent, rgba(183, 110, 121, 0.35), transparent);
                pointer-events: none;
            }

            #mobile-menu.active .mobile-menu-item::before {
                content: '';
                position: absolute;
                inset: 0;
                border-radius: inherit;
                pointer-events: none;
                box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.32);
            }

            #mobile-menu.active .mobile-menu-item:active {
                transform: translateY(1px);
                border-color: rgba(183, 110, 121, 0.62);
                color: var(--rose-gold-light);
                box-shadow:
                    0 5px 16px rgba(0, 0, 0, 0.36),
                    0 0 24px rgba(183, 110, 121, 0.16),
                    inset 0 1px 0 rgba(255, 255, 255, 0.08);
            }
        }

        .nav-link { position: relative; transition: all 0.3s ease; }
        .nav-link::after {
            content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
            width: 0; height: 1px; background-color: var(--rose-gold); transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active-link::after { width: 100%; }

        body.is-protocol-sobrancelhas #site-nav {
            background: rgba(24, 25, 28, 0.82);
            border-bottom-color: rgba(183, 110, 121, 0.35);
        }

        body.is-protocol-sobrancelhas #site-nav .nav-link {
            color: rgba(183, 110, 121, 0.62) !important;
            text-shadow:
                0 1px 8px rgba(24, 25, 28, 0.95),
                0 0 1px rgba(24, 25, 28, 1);
        }

        body.is-protocol-sobrancelhas #site-nav .nav-link:hover,
        body.is-protocol-sobrancelhas #site-nav .nav-link.active-link {
            color: var(--rose-gold) !important;
            text-shadow:
                0 1px 10px rgba(24, 25, 28, 0.98),
                0 2px 14px rgba(35, 28, 30, 0.75);
        }

        body.is-protocol-sobrancelhas #site-nav .texto-espelhado-small {
            text-shadow:
                0 1px 10px rgba(24, 25, 28, 0.95),
                0 0 18px rgba(35, 28, 30, 0.55);
        }

        /* CARDS CLAROS (Quebra Cognitiva) */
        .card-light {
            background-color: var(--blush-cream);
            border: 1px solid rgba(183, 110, 121, 0.4);
            color: var(--gunmetal-dark);
        }
        .card-light h4, .card-light h3 { color: var(--gunmetal-dark); font-weight: 700; }
        .card-light p { color: rgba(24, 25, 28, 0.85); font-weight: 500; }

        /* Sobrancelhas — hierarquia protocolo principal × adicional */
        .sobrancelhas-protocols-intro {
            text-align: center;
            max-width: 36rem;
            margin: 0 auto 2rem;
        }

        .sobrancelhas-protocols-intro__kicker {
            display: inline-block;
            font-size: 0.62rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--rose-gold);
            margin-bottom: 0.65rem;
        }

        .sobrancelhas-protocols-intro__title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.35rem, 3vw, 1.75rem);
            color: var(--champagne);
            font-style: italic;
            line-height: 1.35;
            margin: 0;
        }

        .sobrancelhas-protocol-card--hero {
            border-color: rgba(183, 110, 121, 0.65);
            box-shadow:
                0 12px 40px rgba(183, 110, 121, 0.14),
                inset 0 0 0 1px rgba(255, 255, 255, 0.35);
        }

        .sobrancelhas-protocol-card__tag {
            display: inline-block;
            margin-bottom: 0.85rem;
            padding: 0.28rem 0.65rem;
            border-radius: 999px;
            font-size: 0.58rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--gunmetal-dark);
            background: linear-gradient(135deg, rgba(183, 110, 121, 0.22), rgba(245, 244, 240, 0.95));
            border: 1px solid rgba(183, 110, 121, 0.35);
        }

        .sobrancelhas-addon {
            position: relative;
            max-width: 56rem;
            margin: 3rem auto 0;
            padding: 1px;
            border-radius: 2px;
            background: linear-gradient(
                135deg,
                rgba(212, 195, 179, 0.45) 0%,
                rgba(183, 110, 121, 0.2) 50%,
                rgba(212, 195, 179, 0.15) 100%
            );
        }

        .sobrancelhas-addon__inner {
            display: grid;
            gap: 1.5rem;
            padding: 1.5rem 1.35rem;
            background:
                linear-gradient(165deg, rgba(24, 25, 28, 0.94) 0%, rgba(35, 28, 30, 0.88) 100%);
            border-radius: 1px;
        }

        @media (min-width: 768px) {
            .sobrancelhas-addon__inner {
                grid-template-columns: auto 1fr;
                align-items: center;
                gap: 2rem;
                padding: 2rem 2.25rem;
            }
        }

        .sobrancelhas-addon__emblem {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0.5rem 0;
        }

        @media (min-width: 768px) {
            .sobrancelhas-addon__emblem {
                padding: 0 1.25rem 0 0.25rem;
                border-right: 1px solid rgba(212, 195, 179, 0.18);
                min-width: 9.5rem;
            }
        }

        .sobrancelhas-addon__badge {
            display: inline-block;
            margin-bottom: 1rem;
            padding: 0.32rem 0.75rem;
            border-radius: 999px;
            font-size: 0.56rem;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            font-weight: 600;
            color: #D4C3B3;
            border: 1px solid rgba(212, 195, 179, 0.35);
            background: rgba(212, 195, 179, 0.08);
        }

        .sobrancelhas-addon__icon {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--rose-gold-light);
            font-size: 1.15rem;
            border: 1px solid rgba(183, 110, 121, 0.35);
            background: radial-gradient(circle at 30% 30%, rgba(183, 110, 121, 0.18), transparent 70%);
            box-shadow: 0 0 24px rgba(183, 110, 121, 0.12);
        }

        .sobrancelhas-addon__title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.45rem, 3.2vw, 1.85rem);
            color: #F5F4F0;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 0.5rem;
        }

        .sobrancelhas-addon__lead {
            margin: 0 0 1rem;
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(212, 195, 179, 0.75);
            font-weight: 500;
        }

        .sobrancelhas-addon__text {
            margin: 0 0 1.15rem;
            font-size: 0.82rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.68);
            font-weight: 300;
            max-width: 38rem;
        }

        .sobrancelhas-addon__steps {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem 0.65rem;
            margin: 0 0 1rem;
            padding: 0;
            list-style: none;
        }

        .sobrancelhas-addon__steps li {
            font-size: 0.62rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(245, 244, 240, 0.82);
            padding: 0.35rem 0.65rem;
            border-radius: 999px;
            border: 1px solid rgba(183, 110, 121, 0.22);
            background: rgba(183, 110, 121, 0.08);
        }

        .sobrancelhas-addon__note {
            margin: 0;
            font-size: 0.68rem;
            line-height: 1.55;
            color: rgba(212, 195, 179, 0.55);
            font-style: italic;
            font-weight: 300;
        }
        
        .card-box { display: flex; flex-direction: column; width: 100%; position: relative; overflow: hidden; }
        details > summary { list-style: none; }
        details > summary::-webkit-details-marker { display: none; }

        /* CARROSSEL DE LUXO CROSSFADE */
        .lux-carousel { position: relative; overflow: hidden; }
        .lux-carousel img {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover; opacity: 0; transition: opacity 1.8s ease-in-out;
            will-change: opacity; z-index: 1;
        }
        .lux-carousel img.active { opacity: 1; z-index: 2; }

        /* Modal Oferta Sazonal */
        #modal-sazonal-overlay {
            z-index: 10100 !important;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-x: hidden;
            overscroll-behavior: contain;
            padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
        }
        #modal-sazonal-box {
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: min(100%, 28rem);
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
        }
        #modal-sazonal-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }
        #modal-sazonal-overlay.is-open #modal-sazonal-box {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        #modal-sazonal-kicker,
        #modal-sazonal-titulo,
        #modal-sazonal-subtitle,
        #modal-sazonal-cta {
            word-break: break-word;
            overflow-wrap: anywhere;
        }

        @media (max-width: 640px) {
            #modal-sazonal-overlay {
                align-items: flex-end;
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }

            #modal-sazonal-box {
                border-radius: 0.9rem;
                max-height: calc(100dvh - 1.25rem);
            }
        }

        #promo-slim-banner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10050;
            height: var(--promo-banner-height, 36px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0 2.25rem 0 1rem;
            color: var(--gunmetal-dark);
            font-size: 10px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 600;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
        }

        #promo-slim-banner.hidden,
        #promo-slim-banner.promo-slim-banner--hidden {
            display: none !important;
        }

        #promo-slim-banner.is-live {
            display: flex !important;
        }

        #promo-banner-kicker {
            opacity: 0.75;
            font-size: 8px;
            letter-spacing: 0.25em;
        }

        #promo-banner-title {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            text-transform: none;
            letter-spacing: 0.02em;
            font-size: 11px;
        }

        #promo-banner-cta {
            font-size: 8px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 700;
            border: 1px solid rgba(24, 25, 28, 0.25);
            background: rgba(24, 25, 28, 0.12);
            color: var(--gunmetal-dark);
            padding: 0.2rem 0.55rem;
            border-radius: 999px;
            white-space: nowrap;
            transition: background 0.2s ease;
        }

        #promo-banner-cta:hover { background: rgba(24, 25, 28, 0.22); }

        .promo-banner-close {
            position: absolute;
            right: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1.35rem;
            height: 1.35rem;
            border: none;
            border-radius: 999px;
            background: rgba(24, 25, 28, 0.12);
            color: var(--gunmetal-dark);
            font-size: 1rem;
            line-height: 1;
            cursor: pointer;
            opacity: 0.75;
            transition: opacity 0.2s ease, background 0.2s ease;
        }

        .promo-banner-close:hover {
            opacity: 1;
            background: rgba(24, 25, 28, 0.22);
        }

        @media (max-width: 480px) {
            #promo-slim-banner { font-size: 9px; gap: 0.45rem; }
            #promo-banner-kicker { display: none; }
        }

        body.has-promo-banner { --promo-banner-height: 36px; }
        body.has-promo-banner #site-nav { top: var(--promo-banner-height); z-index: 10040; }
        body.has-promo-banner #mobile-menu {
            top: var(--promo-banner-height);
            height: calc(100% - var(--promo-banner-height));
        }

        /* —— Avaliações Google (marquee) —— */
        .google-reviews-band {
            background: linear-gradient(180deg, rgba(24, 25, 28, 0.35) 0%, rgba(24, 25, 28, 0.85) 100%);
            border-top: 1px solid rgba(183, 110, 121, 0.12);
            border-bottom: 1px solid rgba(183, 110, 121, 0.12);
            padding: 2.5rem 0 2.75rem;
            overflow: hidden;
        }

        .google-reviews-band__inner {
            max-width: 100%;
        }

        .google-reviews-band__header {
            text-align: center;
            padding: 0 1.25rem 1.5rem;
        }

        .google-reviews-band__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            background: #fff;
            color: #3c4043;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-decoration: none;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
            transition: box-shadow 0.25s ease, transform 0.25s ease;
        }

        .google-reviews-band__badge:hover {
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
            transform: translateY(-1px);
        }

        .google-reviews-band__rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            margin-top: 0.85rem;
        }

        .google-reviews-band__score {
            font-size: 1.35rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .google-reviews-band__stars {
            color: #fbbc04;
            font-size: 0.85rem;
            letter-spacing: 0.08em;
        }

        .google-reviews-band__sub {
            margin-top: 0.45rem;
            font-size: 0.7rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(245, 244, 240, 0.55);
            font-weight: 500;
        }

        .google-reviews-marquee {
            position: relative;
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
        }

        .google-reviews-marquee__track {
            display: flex;
            width: max-content;
            animation: google-reviews-scroll 90s linear infinite;
            will-change: transform;
        }

        .google-reviews-marquee__group {
            display: flex;
            gap: 1rem;
            padding: 0 0.5rem;
        }

        .google-reviews-marquee:hover .google-reviews-marquee__track {
            animation-play-state: paused;
        }

        @keyframes google-reviews-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .google-review-card {
            flex: 0 0 auto;
            width: min(320px, 78vw);
            background: #fff;
            border-radius: 12px;
            padding: 1rem 1.05rem 1.1rem;
            box-shadow: 0 1px 3px rgba(60, 64, 67, 0.18), 0 4px 12px rgba(60, 64, 67, 0.08);
            color: #3c4043;
            font-family: 'Montserrat', system-ui, sans-serif;
        }

        .google-review-card__head {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 0.65rem;
            align-items: start;
            margin-bottom: 0.75rem;
        }

        .google-review-card__avatar {
            width: 2.35rem;
            height: 2.35rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            background: hsl(var(--avatar-hue, 210) 62% 46%);
        }

        .google-review-card__name {
            font-size: 0.82rem;
            font-weight: 600;
            color: #202124;
            line-height: 1.2;
            margin: 0;
        }

        .google-review-card__stars {
            display: inline-flex;
            gap: 0.12rem;
            margin-top: 0.2rem;
            color: #fbbc04;
            font-size: 0.62rem;
        }

        .google-review-card__time {
            margin: 0.15rem 0 0;
            font-size: 0.68rem;
            color: #70757a;
        }

        .google-review-card__g {
            opacity: 0.9;
            line-height: 0;
        }

        .google-review-card__text {
            margin: 0;
            font-size: 0.78rem;
            line-height: 1.55;
            color: #3c4043;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (prefers-reduced-motion: reduce) {
            .google-reviews-marquee__track {
                animation: none;
                flex-wrap: wrap;
                width: 100%;
                justify-content: center;
                gap: 1rem;
                padding: 0 1rem 0.5rem;
            }

            .google-reviews-marquee__group[aria-hidden="true"] {
                display: none;
            }

            .google-reviews-marquee {
                mask-image: none;
                -webkit-mask-image: none;
            }
        }

        .site-legal-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.35rem 1.25rem;
            margin-bottom: 0.25rem;
        }

        .site-legal-links a {
            font-size: 0.62rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.32);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .site-legal-links a:hover {
            color: var(--rose-gold-light);
        }

        .site-seo-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.35rem 1rem;
            margin-bottom: 0.35rem;
        }

        .site-seo-links a {
            font-size: 0.58rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.25);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .site-seo-links a:hover {
            color: var(--rose-gold-light);
        }

        .site-regional-seo {
            max-width: 36rem;
            text-align: center;
            font-size: 0.58rem;
            letter-spacing: 0.12em;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.28);
            font-weight: 300;
            margin-bottom: 0.5rem;
        }

        .protocol-local-seo {
            font-size: 0.62rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            line-height: 1.6;
            opacity: 0.55;
            max-width: 36rem;
        }

        .site-credit {
            margin: 0;
            font-size: 0.58rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.22);
        }

        .site-credit a {
            color: rgba(183, 110, 121, 0.55);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .site-credit a:hover {
            color: var(--rose-gold-light);
        }

        .site-admin-lock {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.18);
            text-decoration: none;
            transition: color 0.35s ease, opacity 0.35s ease;
        }

        .site-admin-lock i {
            font-size: 0.55rem;
        }

        .site-admin-lock:hover,
        .site-admin-lock:focus-visible {
            color: rgba(183, 110, 121, 0.55);
            outline: none;
        }

        .footer-brand {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

        .site-admin-lock--brand {
            opacity: 0.04;
            transform: translateY(1px);
        }

        .footer-brand:hover .site-admin-lock--brand,
        .site-admin-lock--brand:hover,
        .site-admin-lock--brand:focus-visible {
            opacity: 0.38;
        }

        .site-admin-lock--corner {
            position: fixed;
            left: max(0.45rem, env(safe-area-inset-left));
            bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
            z-index: 45;
            width: 1.35rem;
            height: 1.35rem;
            opacity: 0.05;
            pointer-events: auto;
        }

        .site-admin-lock--corner:hover,
        .site-admin-lock--corner:focus-visible {
            opacity: 0.42;
        }

        @media (min-width: 768px) {
            .site-admin-lock--corner {
                bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
            }
        }

        /* Banner de cookies — só visível quando tracking de marketing estiver ativo */
        .cookie-consent-banner {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10200;
            padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
            background: rgba(24, 25, 28, 0.96);
            border-top: 1px solid rgba(183, 110, 121, 0.35);
            backdrop-filter: blur(10px);
            box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
        }

        .cookie-consent-banner__inner {
            max-width: 56rem;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        @media (min-width: 768px) {
            .cookie-consent-banner__inner {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 1.25rem;
            }
        }

        .cookie-consent-banner__text {
            margin: 0;
            font-size: 0.72rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.72);
            font-weight: 300;
        }

        .cookie-consent-banner__text a {
            color: var(--rose-gold-light);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .cookie-consent-banner__actions {
            display: flex;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .cookie-consent-banner__btn {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.58rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            font-weight: 700;
            padding: 0.55rem 0.9rem;
            border-radius: 2px;
            cursor: pointer;
            border: 1px solid transparent;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        .cookie-consent-banner__btn--ghost {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.55);
        }

        .cookie-consent-banner__btn--ghost:hover {
            border-color: rgba(183, 110, 121, 0.5);
            color: var(--champagne);
        }

        .cookie-consent-banner__btn--primary {
            background: var(--rose-gold);
            color: var(--gunmetal-dark);
            border-color: var(--rose-gold);
        }

        .cookie-consent-banner__btn--primary:hover {
            background: var(--rose-gold-light);
        }

        body.has-cookie-consent .wa-float-widget {
            bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
        }

        @media (min-width: 768px) {
            body.has-cookie-consent .wa-float-widget {
                bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
            }
        }

     