﻿/* =========================================
           LUXURY MASTER CORE & FUNNEL STYLES
        ========================================= */
        /* =========================================
           ESSÊNCIA RARA — PALETA OFICIAL (LOGO)
        ========================================= */
        :root {
            --er-plum: #3D143D;
            --er-plum-dark: #2A0E2A;
            --er-plum-deep: #401040;
            --er-gold: #D4AF37;
            --er-gold-bright: #F9E27B;
            --er-gold-deep: #8A6D3B;
            --er-gold-bronze: #73552C;
            --er-bone: #FDFDFB;
        }

        body { 
            transition: background-color 0.8s ease, color 0.5s ease; 
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            color: var(--er-bone);
            background: radial-gradient(ellipse at 50% 0%, var(--er-plum-deep) 0%, var(--er-plum) 45%, var(--er-plum-dark) 100%);
            font-family: 'Inter', sans-serif;
        }
        .dark body {
            color: var(--er-bone);
            background: radial-gradient(ellipse at 50% 0%, var(--er-plum-deep) 0%, var(--er-plum) 45%, var(--er-plum-dark) 100%);
        }
        
        .gold-gradient {
            background: linear-gradient(135deg, var(--er-gold-bronze) 0%, var(--er-gold-deep) 28%, var(--er-gold-bright) 52%, var(--er-gold) 78%, var(--er-gold-bronze) 100%);
        }

        .noise-bg::before {
            content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0.035; pointer-events: none; z-index: 9999;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
        .animate-ready { opacity: 1 !important; transform: translateY(0) !important; }

        .page-content { display: none; padding-bottom: calc(var(--er-mobile-nav) + var(--er-safe-bottom) + 1.5rem); }
        .page-content.active { display: block; animation: fadeIn 0.8s ease forwards; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* HEADER & NAVIGATION */
        #main-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 90;
            transition: transform 0.3s ease;
        }

        .header-topbar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.3125rem 0.75rem;
            text-align: center;
            color: var(--er-plum-dark);
            background: linear-gradient(
                135deg,
                rgba(115, 85, 44, 0.92) 0%,
                rgba(138, 109, 59, 0.88) 28%,
                rgba(249, 226, 123, 0.9) 52%,
                rgba(212, 175, 55, 0.88) 78%,
                rgba(115, 85, 44, 0.92) 100%
            );
            backdrop-filter: blur(14px) saturate(1.15);
            -webkit-backdrop-filter: blur(14px) saturate(1.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }

        .header-topbar--smart {
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
            opacity: 0;
            overflow: hidden;
            border-bottom-width: 0;
            pointer-events: none;
            transition:
                max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                border-bottom-width 0.2s ease;
        }

        .header-topbar--smart.is-visible {
            max-height: 2.75rem;
            padding-top: 0.3125rem;
            padding-bottom: 0.3125rem;
            opacity: 1;
            border-bottom-width: 1px;
            pointer-events: auto;
            cursor: pointer;
        }

        .header-topbar__close {
            color: var(--er-plum-dark);
            line-height: 0;
            cursor: pointer;
            width: 1.5rem;
            height: 1.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 2px;
            border: 1px solid rgba(42, 14, 42, 0.12);
            background: rgba(253, 253, 251, 0.35);
            transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
        }

        .header-topbar__close:hover {
            opacity: 1;
            background: rgba(253, 253, 251, 0.72);
            border-color: rgba(42, 14, 42, 0.2);
        }

        body.offer-topbar-visible {
            --er-header-offset: 7rem;
        }

        @media (min-width: 640px) {
            body.offer-topbar-visible {
                --er-header-offset: 7.25rem;
            }
        }

        @media (min-width: 1024px) {
            body.offer-topbar-visible {
                --er-header-offset: 8rem;
            }
        }

        #main-nav {
            min-height: 3rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.14);
            background: var(--er-plum);
            box-shadow: 0 4px 24px -8px rgba(42, 14, 42, 0.45);
        }

        .dark #main-nav {
            background: var(--er-plum);
            box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.35);
        }

        /* Home: barra funde com o quadrado do logo */
        body:has(#page-home.active) #main-nav {
            border-bottom-color: rgba(212, 175, 55, 0.1);
            background: var(--er-plum);
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        body:has(#page-home.active) #main-header {
            background: var(--er-plum);
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            box-shadow: 0 1px 0 rgba(212, 175, 55, 0.08);
        }

        body:has(#page-home.active) .nav-anchor {
            color: rgba(253, 253, 251, 0.82);
        }

        body:has(#page-home.active) .nav-anchor:hover,
        body:has(#page-home.active) .nav-anchor.active {
            color: var(--er-gold-bright);
        }

        body:has(#page-home.active) .site-logo {
            color: var(--er-bone);
        }

        body:has(#page-home.active) .site-tagline {
            color: var(--er-gold-bright);
        }

        .dark body:has(#page-home.active) #main-nav {
            background: var(--er-plum);
        }

        body:has(#page-home.active) .header-topbar--smart.is-visible {
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }

        body:not(:has(#page-home.active)) #main-nav {
            border-bottom: 1px solid rgba(212, 175, 55, 0.14);
        }

        .site-logo {
            font-size: clamp(1rem, 2.8vw, 1.375rem);
            letter-spacing: 0.02em;
            color: var(--er-bone);
        }

        .site-tagline {
            font-size: 0.5625rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--er-gold-bright);
        }

        @media (min-width: 640px) {
            .site-tagline {
                font-size: 0.625rem;
                letter-spacing: 0.26em;
            }
        }

        .nav-anchor {
            position: relative;
            padding-bottom: 2px;
            font-size: 0.6875rem;
            transition: color 0.25s ease;
            font-weight: 600;
            color: rgba(253, 253, 251, 0.78);
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .nav-anchor:hover {
            color: var(--er-gold-bright);
        }

        .nav-anchor.active {
            color: var(--er-bone);
        }

        .nav-anchor.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 55%;
            height: 1.5px;
            background: var(--er-gold-bright);
            transform: translateX(-50%);
        }

        .dark .nav-anchor {
            color: rgba(253, 253, 251, 0.78);
        }

        .dark .nav-anchor:hover {
            color: var(--er-gold-bright);
        }

        .dark .nav-anchor.active {
            color: var(--er-bone);
        }

        .header-wa-btn {
            border-radius: 2px;
            letter-spacing: 0.1em;
            color: var(--er-gold-bright);
            background: transparent;
            border: 1px solid rgba(249, 226, 123, 0.45);
        }

        .dark .header-wa-btn {
            color: var(--er-gold-bright);
            background: rgba(42, 14, 42, 0.35);
            border-color: rgba(249, 226, 123, 0.42);
        }

        .header-wa-btn:hover {
            transform: translateY(-1px);
            color: var(--er-plum-dark);
            background: linear-gradient(135deg, var(--er-gold-bronze), var(--er-gold-bright));
            border-color: transparent;
            filter: none;
        }

        .m-nav-btn { color: var(--er-gold-deep); opacity: 0.75; transition: color 0.25s ease, opacity 0.25s ease; font-family: 'Montserrat', sans-serif; }
        .m-nav-btn.active-mobile { color: var(--er-gold) !important; opacity: 1 !important; font-weight: 600; }
        .dark .m-nav-btn { color: var(--er-gold-bright); }

        .btn-luxe { position: relative; overflow: hidden; transition: transform 0.25s ease, filter 0.25s ease; cursor: pointer; border-radius: 2px; font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em; }
        .btn-luxe::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); transition: left 0.5s ease; pointer-events: none; }
        .btn-luxe:hover::after { left: 100%; }
        .btn-luxe:hover { filter: brightness(1.04); }

        .color-on-focus { filter: grayscale(100%) contrast(1.2); transition: filter 1s ease; }
        .color-on-focus.active-color { filter: grayscale(0%) contrast(1.05) !important; }

        .comparison-wrapper { max-width: 500px; margin: 0 auto; position: relative; box-shadow: 0 30px 60px -12px rgba(42, 14, 42, 0.35); border: 1px solid rgba(212, 175, 55, 0.22); }
        .comparison-container { position: relative; width: 100%; aspect-ratio: 4 / 4.5; overflow: hidden; background: #eee; }
        .comparison-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
        .comparison-after { clip-path: inset(0 0 0 var(--position, 50%)); }
        .comparison-slider-bar { position: absolute; top: 0; bottom: 0; left: var(--position, 50%); width: 2px; background: #FDFDFB; z-index: 20; pointer-events: none; }
        .comparison-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; background: #FDFDFB; border: 2px solid var(--er-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--er-gold-deep); box-shadow: 0 4px 15px rgba(42, 14, 42, 0.35); z-index: 21; }
        .comparison-input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; z-index: 30; cursor: ew-resize; }

        .carousel-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
        .carousel-track::-webkit-scrollbar { display: none; }
        
        .table-container { width: 100%; overflow-x: auto; border-radius: 4px; -webkit-overflow-scrolling: touch; }
        .er-table-wrap { position: relative; }
        .er-table-wrap::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 1.75rem;
            pointer-events: none;
            background: linear-gradient(to left, rgba(253, 253, 251, 0.95), transparent);
            border-radius: 0 2px 2px 0;
        }
        .dark .er-table-wrap::after {
            background: linear-gradient(to left, rgb(24 24 27), transparent);
        }
        .sticky-col { position: sticky; left: 0; z-index: 20; background: white; border-right: 1px solid rgba(212, 175, 55, 0.2); }
        .dark .sticky-col { background: rgb(24 24 27); }
        
        .product-image-container { position: relative; width: 100%; overflow: hidden; }
        .liso-protocol-card__photo.product-image-container {
            aspect-ratio: 4 / 3;
        }
        .product-image-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease-in-out; }
        .product-image-item.active { opacity: 1; z-index: 10; }

        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
        .faq-item.active .faq-answer { max-height: 300px; }

        /* =========================================
           WAVE EFFECT (PRELOADER) & MONOGRAM PATTERN
        ========================================= */
        .wave-text {
            background: linear-gradient(0deg, var(--er-gold-bronze) 0%, var(--er-gold-bright) 50%, var(--er-gold) 100%);
            background-size: 100% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: waveUpLiquid 3s ease-in-out infinite alternate;
            will-change: background-position;
        }
        @keyframes waveUpLiquid {
            0% { background-position: 0% 100%; }
            100% { background-position: 0% 0%; }
        }

        .bg-monogram-pattern {
            background-color: var(--er-bone);
            background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Playfair Display, serif' font-size='40' font-weight='900' fill='%23D4AF37' fill-opacity='0.06' transform='rotate(-45 75 75)'%3EER%3C/text%3E%3C/svg%3E");
        }
        .dark .bg-monogram-pattern {
            background-color: var(--er-plum-dark);
            background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Playfair Display, serif' font-size='40' font-weight='900' fill='%23F9E27B' fill-opacity='0.04' transform='rotate(-45 75 75)'%3EER%3C/text%3E%3C/svg%3E");
        }

        /* =========================================
           SENSORY EFFECTS (FOCO, GLOW E BLUR)
        ========================================= */
        .sensory-text { transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0.3; filter: blur(3px); transform: scale(0.96); }
        .sensory-text.sensory-active { opacity: 1; filter: blur(0px); transform: scale(1); text-shadow: 0 0 25px rgba(212, 175, 55, 0.45); }

        /* =========================================
           LAYOUT SYSTEM & RESPONSIVE
        ========================================= */
        :root {
            --er-header-offset: 5.5rem;
            --er-mobile-nav: 4rem;
            --er-safe-bottom: env(safe-area-inset-bottom, 0px);
            --er-page-gutter: 1rem;
            --er-content-max: 72rem;
        }

        @media (min-width: 640px) {
            :root { --er-page-gutter: 1.5rem; }

            #main-nav {
                min-height: 3.25rem;
            }
        }

        @media (min-width: 1024px) {
            :root {
                --er-header-offset: 6.25rem;
                --er-mobile-nav: 0px;
            }

            #main-nav {
                min-height: 3.5rem;
            }
        }

        @media (min-width: 1024px) {
            .page-content { padding-bottom: 3rem; }
        }

        .page-shell {
            padding-top: var(--er-header-offset);
        }

        /* Hero colado ao topo — preenche viewport no desktop */
        #page-home.page-shell--hero-flush {
            padding-top: 0;
        }

        .hero-title {
            font-size: clamp(2.25rem, 7vw, 4.5rem);
            line-height: 1;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.05;
        }

        .section-title-lg {
            font-size: clamp(1.875rem, 4.5vw, 3.25rem);
            line-height: 1.08;
        }

        .section-title-xl {
            font-size: clamp(1.75rem, 4vw, 2.875rem);
            line-height: 1.1;
        }

        .topbar-announce {
            line-height: 1.25;
            letter-spacing: 0.1em;
        }

        @media (max-width: 639px) {
            .topbar-announce {
                font-size: 0.5625rem;
                letter-spacing: 0.06em;
            }

            .topbar-announce i {
                width: 0.75rem;
                height: 0.75rem;
            }

            .sensory-text {
                filter: blur(1.5px);
            }

            .sensory-text.sensory-active {
                text-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
            }

            #main-nav {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }

            .er-card-body:not(.liso-protocol-card__body):not(.er-corte-card__body) {
                padding: 1.5rem !important;
            }

            .er-table-cell {
                padding-top: 1rem !important;
                padding-bottom: 1rem !important;
                padding-left: 0.75rem !important;
                padding-right: 0.75rem !important;
            }

            .er-table-price {
                font-size: 1.5rem !important;
            }

            .selos-divider {
                display: none;
            }

            .hero-inner {
                padding-bottom: 1.5rem;
            }
        }

        @media (min-width: 640px) {
            .er-card-body:not(.liso-protocol-card__body):not(.er-corte-card__body) {
                padding: 2.5rem !important;
            }
        }

        @media (min-width: 1024px) {
            .er-card-body:not(.liso-protocol-card__body):not(.er-corte-card__body) {
                padding: 3rem !important;
            }
        }

        @media (min-width: 1280px) {
            .site-container {
                max-width: var(--er-content-max);
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (min-width: 1536px) {
            .hero-inner {
                max-width: 80rem;
            }

            .section-block {
                padding-top: 8rem;
                padding-bottom: 8rem;
            }
        }

        #mobile-bottom-nav {
            padding-bottom: max(0.75rem, var(--er-safe-bottom));
        }

        .comparison-wrapper {
            width: 100%;
            max-width: min(500px, 100%);
        }

        .table-container table {
            min-width: 18rem;
        }

        @media (max-width: 380px) {
            .hero-badge {
                letter-spacing: 0.2em !important;
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }

            .header-wa-btn {
                padding-left: 0.75rem !important;
                padding-right: 0.75rem !important;
            }

            .topbar-announce i {
                display: none;
            }
        }

        @media (min-width: 1024px) {
            .er-table-wrap::after {
                display: none;
            }
        }

        /* =========================================
           IDENTIDADE — refinamento editorial
        ========================================= */
        #page-home .identity-hero {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            min-height: auto;
            padding-top: var(--er-header-offset);
            padding-bottom: 0;
            box-sizing: border-box;
            background: var(--er-plum-dark);
        }

        #page-home .identity-hero__media {
            position: relative;
            width: 100%;
            height: clamp(13rem, 44vh, 22rem);
            overflow: hidden;
            flex-shrink: 0;
        }

        #page-home .identity-hero__photo {
            width: 100%;
            max-width: none;
            height: 100%;
            object-position: 92% 22%;
            filter: contrast(1.03) saturate(1.06);
        }

        #page-home .identity-hero__veil {
            background:
                linear-gradient(
                    to top,
                    rgba(42, 14, 42, 0.55) 0%,
                    rgba(42, 14, 42, 0.12) 42%,
                    transparent 72%
                );
        }

        .dark #page-home .identity-hero__veil {
            background:
                linear-gradient(
                    to top,
                    rgba(42, 14, 42, 0.62) 0%,
                    rgba(42, 14, 42, 0.16) 42%,
                    transparent 72%
                );
        }

        #page-home .identity-hero__content {
            margin-right: auto;
            background: linear-gradient(180deg, var(--er-plum-dark) 0%, rgba(42, 14, 42, 0.98) 100%);
        }

        .dark #page-home .identity-hero__content {
            background: linear-gradient(180deg, var(--er-plum-dark) 0%, rgba(42, 14, 42, 0.98) 100%);
        }

        #page-home .identity-hero__zone--campaign {
            margin-bottom: 0.75rem;
        }

        #page-home .identity-hero__zone--headline {
            margin-bottom: 1rem;
        }

        #page-home .identity-hero__zone--headline .identity-headline {
            margin-bottom: 0.625rem;
        }

        #page-home .identity-hero__zone--offers {
            margin-bottom: 1.5rem;
        }

        #page-home .identity-hero__zone--action {
            margin-bottom: 2rem;
        }

        #page-home .identity-hero__zone--trust {
            padding-top: 1rem;
            border-top: 1px solid rgba(212, 175, 55, 0.18);
        }

        #page-home .identity-hero-lead {
            color: rgba(253, 253, 251, 0.82);
            text-wrap: pretty;
        }

        .dark #page-home .identity-hero-lead {
            color: rgba(253, 253, 251, 0.78);
        }

        #page-home .identity-hero__offers-panel {
            padding: 0.875rem;
            border-radius: 4px;
            background: linear-gradient(
                145deg,
                rgba(106, 58, 106, 0.42) 0%,
                rgba(74, 36, 82, 0.28) 48%,
                rgba(61, 20, 61, 0.18) 100%
            );
            border: 1px solid rgba(212, 175, 55, 0.16);
            box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.45);
        }

        #page-home .identity-hero__prices {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.625rem;
            max-width: 22rem;
        }

        #page-home .identity-hero__price-chip {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            padding: 0.75rem 0.625rem;
            border-radius: 3px;
            border: 1px solid transparent;
        }

        #page-home .identity-hero__price-chip--anchor {
            background: linear-gradient(160deg, rgba(12, 6, 14, 0.94) 0%, rgba(24, 10, 26, 0.92) 100%);
            border-color: rgba(212, 175, 55, 0.38);
            box-shadow: inset 0 1px 0 rgba(249, 226, 123, 0.08);
        }

        #page-home .identity-hero__price-chip--anchor .identity-hero__price-label {
            color: rgba(249, 226, 123, 0.78);
        }

        #page-home .identity-hero__price-chip--anchor .identity-hero__price-value {
            color: var(--er-gold-bright);
            text-shadow: 0 0 18px rgba(249, 226, 123, 0.18);
        }

        #page-home .identity-hero__price-chip--anchor .identity-hero__price-note {
            color: rgba(212, 175, 55, 0.82);
        }

        #page-home .identity-hero__price-chip--soft {
            background: linear-gradient(
                155deg,
                rgba(148, 96, 148, 0.55) 0%,
                rgba(118, 68, 122, 0.42) 55%,
                rgba(90, 48, 98, 0.36) 100%
            );
            border-color: rgba(253, 253, 251, 0.14);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }

        #page-home .identity-hero__price-chip--soft .identity-hero__price-label {
            color: rgba(253, 253, 251, 0.88);
        }

        #page-home .identity-hero__price-chip--soft .identity-hero__price-value {
            color: var(--er-bone);
        }

        #page-home .identity-hero__price-chip--soft .identity-hero__price-note {
            color: rgba(253, 253, 251, 0.62);
        }

        #page-home .identity-hero__price-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.5625rem;
            font-weight: 600;
            line-height: 1.35;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        #page-home .identity-hero__price-value {
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1.1;
        }

        #page-home .identity-hero__price-note {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.5625rem;
            font-weight: 500;
            line-height: 1.3;
        }

        @media (max-width: 380px) {
            #page-home .identity-hero__media {
                height: clamp(12rem, 40vh, 17rem);
            }

            #page-home .identity-hero__photo {
                object-position: 94% 20%;
            }

            #page-home .identity-hero__price-label {
                font-size: 0.5rem;
            }

            #page-home .identity-hero__price-value {
                font-size: 1rem;
            }
        }

        @media (min-width: 640px) and (max-width: 1023px) {
            #page-home .identity-hero__media {
                height: clamp(14rem, 38vh, 20rem);
            }

            #page-home .identity-hero__photo {
                object-position: 90% 24%;
            }

            #page-home .identity-hero__offers-panel {
                padding: 1rem;
            }

            #page-home .identity-hero__prices {
                max-width: 26rem;
                gap: 0.75rem;
            }

            #page-home .identity-hero__price-chip {
                padding: 0.875rem 0.75rem;
            }

            #page-home .identity-hero__price-value {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 1024px) {
            #page-home .identity-hero {
                height: 100svh;
                height: 100dvh;
                min-height: 100svh;
                min-height: 100dvh;
                max-height: 100dvh;
                padding-top: var(--er-header-offset);
                padding-bottom: 0;
                overflow: hidden;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                background: var(--er-plum-dark);
            }

            #page-home .identity-hero__media {
                position: absolute;
                inset: 0;
                height: auto;
                z-index: 0;
            }

            #page-home .identity-hero__photo {
                width: 100%;
                max-width: none;
                transform: none;
                object-position: 78% 24%;
            }

            #page-home .identity-hero__veil {
                background:
                    linear-gradient(
                        to right,
                        rgba(42, 14, 42, 0.78) 0%,
                        rgba(42, 14, 42, 0.42) 38%,
                        rgba(42, 14, 42, 0.08) 58%,
                        transparent 72%
                    );
            }

            .dark #page-home .identity-hero__veil {
                background:
                    linear-gradient(
                        to right,
                        rgba(42, 14, 42, 0.84) 0%,
                        rgba(42, 14, 42, 0.48) 38%,
                        rgba(42, 14, 42, 0.12) 58%,
                        transparent 72%
                    );
            }

            #page-home .identity-hero__content {
                background: transparent;
            }

            .dark #page-home .identity-hero__content {
                background: transparent;
            }

            #page-home .identity-hero__prices {
                max-width: 24rem;
            }

            #page-home .identity-hero__offers-panel {
                padding: 1rem 1.125rem;
                background: linear-gradient(
                    145deg,
                    rgba(106, 58, 106, 0.32) 0%,
                    rgba(74, 36, 82, 0.2) 100%
                );
            }

            #page-home .identity-hero__zone--trust {
                border-top-color: rgba(212, 175, 55, 0.28);
            }

            #page-home .identity-hero__veil {
                background:
                    linear-gradient(
                        to right,
                        rgba(42, 14, 42, 0.82) 0%,
                        rgba(42, 14, 42, 0.55) 34%,
                        rgba(42, 14, 42, 0.18) 52%,
                        transparent 72%
                    );
            }

            .dark #page-home .identity-hero__veil {
                background:
                    linear-gradient(
                        to right,
                        rgba(42, 14, 42, 0.88) 0%,
                        rgba(42, 14, 42, 0.6) 34%,
                        rgba(42, 14, 42, 0.22) 52%,
                        transparent 72%
                    );
            }

            #page-home .identity-headline {
                font-size: clamp(2rem, 3.2vw, 3.25rem);
            }

            #page-home .identity-hero__content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                min-height: calc(100dvh - var(--er-header-offset));
                padding-top: 1rem;
                padding-bottom: 1rem;
                margin-left: clamp(1.5rem, 4vw, 3.5rem);
            }

            #page-home .identity-hero__content .identity-eyebrow {
                margin-bottom: 1rem;
            }

            #page-home .identity-hero__content .identity-headline {
                margin-bottom: 0.75rem;
                max-width: 12ch;
            }

            #page-home .identity-hero__content .identity-hero-lead {
                margin-bottom: 0.75rem;
                font-size: 1rem;
                line-height: 1.55;
            }
        }

        @media (min-width: 1280px) {
            #page-home .identity-hero {
                padding-bottom: 1rem;
            }

            #page-home .identity-headline {
                font-size: clamp(2.125rem, 2.6vw, 3.25rem);
            }

            #page-home .identity-hero-lead {
                font-size: 1.0625rem;
                line-height: 1.6;
            }

            #page-home .identity-hero__content {
                min-height: calc(100dvh - var(--er-header-offset) - 1rem);
            }
        }

        @media (min-width: 1536px) {
            #page-home .identity-hero__content {
                max-width: 46rem;
            }

            #page-home .identity-headline {
                font-size: clamp(2.25rem, 2.4vw, 3.35rem);
            }
        }

        @media (min-width: 1024px) and (max-height: 820px) {
            #page-home .identity-headline {
                font-size: clamp(1.75rem, 2.8vw, 2.5rem);
            }

            #page-home .identity-lead {
                font-size: 0.9375rem;
                line-height: 1.55;
            }

            #page-home .identity-hero__content .identity-eyebrow {
                margin-bottom: 0.75rem;
            }

            #page-home .identity-hero__content .identity-proof {
                margin-bottom: 1rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            #page-home .identity-hero__photo {
                transition: none;
            }
        }

        #page-home .identity-headline {
            font-size: clamp(1.75rem, 5.2vw, 2.75rem);
            font-weight: 600;
            text-wrap: balance;
            color: var(--er-bone);
            text-shadow: 0 2px 24px rgba(42, 14, 42, 0.5), 0 1px 6px rgba(0, 0, 0, 0.35);
        }

        .dark #page-home .identity-headline {
            color: var(--er-bone);
            text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
        }

        #page-home .identity-lead {
            text-wrap: pretty;
            color: rgba(253, 253, 251, 0.9);
            text-shadow: 0 1px 16px rgba(42, 14, 42, 0.45);
        }

        .dark #page-home .identity-lead {
            color: rgba(253, 253, 251, 0.88);
            text-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
        }

        #page-home .identity-hero-price {
            color: var(--er-gold-bright);
            font-weight: 500;
            text-shadow: 0 1px 12px rgba(42, 14, 42, 0.55);
        }

        .dark #page-home .identity-hero-price {
            color: var(--er-gold-bright);
            text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
        }

        #page-home .identity-proof {
            color: rgba(249, 226, 123, 0.88);
            text-shadow: 0 1px 12px rgba(42, 14, 42, 0.4);
        }

        .dark #page-home .identity-proof {
            color: rgba(249, 226, 123, 0.85);
        }

        #page-home .identity-cta__note {
            color: rgba(253, 253, 251, 0.58);
            text-shadow: 0 1px 10px rgba(42, 14, 42, 0.35);
        }

        .dark #page-home .identity-cta__note {
            color: rgba(253, 253, 251, 0.52);
        }

        #page-home .identity-section-title {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            font-weight: 600;
            text-wrap: balance;
        }

        #page-home .identity-proof {
            letter-spacing: 0.01em;
            text-transform: none;
        }

        #page-home .identity-cta__btn {
            max-width: 18rem;
            margin-left: 0;
            margin-right: auto;
        }

        #page-home .identity-comparison.comparison-wrapper {
            width: 100%;
            max-width: min(280px, 88vw);
            margin-left: auto;
            margin-right: auto;
        }

        #page-home .identity-comparison-wrap {
            max-width: min(280px, 88vw);
            margin-left: auto;
            margin-right: auto;
        }

        #page-home .identity-comparison-labels {
            display: flex;
            justify-content: space-between;
            max-width: min(280px, 88vw);
            margin: 0.75rem auto 0;
            padding: 0 0.25rem;
            font-size: 0.5625rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(138, 109, 59, 0.8);
        }

        .dark #page-home .identity-comparison-labels {
            color: rgba(212, 175, 55, 0.75);
        }

        @media (min-width: 640px) {
            #page-home .identity-comparison-labels {
                font-size: 0.625rem;
                margin-top: 0.875rem;
            }
        }

        #page-home .identity-comparison .comparison-container {
            aspect-ratio: 4 / 4.5;
            max-height: min(42vh, 320px);
        }

        .identity-reveal-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        @media (min-width: 640px) {
            #page-home .identity-comparison.comparison-wrapper,
            #page-home .identity-comparison-wrap,
            #page-home .identity-comparison-labels {
                max-width: min(300px, 100%);
            }

            #page-home .identity-comparison .comparison-container {
                max-height: min(44vh, 340px);
            }

            .identity-reveal-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
                align-items: start;
            }

            .identity-reveal-grid__compare {
                text-align: left;
            }

            .identity-reveal-grid__compare .identity-comparison-wrap {
                max-width: none;
                margin-left: 0;
            }

            #cortes-grid {
                gap: 2rem !important;
            }
        }

        @media (min-width: 1024px) {
            .identity-reveal-grid {
                display: grid;
                grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
                gap: 2rem 2.5rem;
                align-items: center;
            }

            #page-home .identity-comparison.comparison-wrapper,
            #page-home .identity-comparison-wrap,
            #page-home .identity-comparison-labels {
                max-width: 320px;
                margin-left: 0;
                margin-right: auto;
            }

            #page-home .identity-comparison .comparison-container {
                aspect-ratio: 4 / 4.5;
                max-height: min(52vh, 380px);
            }

            #page-home .identity-oferta {
                box-shadow: 0 16px 48px -20px rgba(42, 14, 42, 0.45);
            }
        }

        #page-home .identity-trust__item {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            border-radius: 9999px;
            border: 1px solid rgba(212, 175, 55, 0.28);
            background: rgba(212, 175, 55, 0.08);
            color: var(--er-gold-deep);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.625rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .dark #page-home .identity-trust__item {
            background: rgba(212, 175, 55, 0.12);
            color: var(--er-gold-bright);
        }

        #page-home .identity-reveal-grid__offer {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        #page-home .identity-oferta {
            box-shadow: 0 12px 40px -16px rgba(0, 0, 0, 0.35);
        }

        .er-ofertas-alisamento {
            background: radial-gradient(ellipse at 50% 0%, var(--er-plum-deep) 0%, var(--er-plum) 50%, var(--er-plum-dark) 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.12);
            border-bottom: 1px solid rgba(212, 175, 55, 0.12);
        }

        .alisamentos-hero {
            scroll-margin-top: var(--er-header-offset);
        }

        #ofertas-alisamento {
            scroll-margin-top: calc(var(--er-header-offset) + 0.5rem);
        }

        #page-alisamentos .alisamentos-liso {
            scroll-margin-top: calc(var(--er-header-offset) + 1rem);
        }

        #tabela-master {
            scroll-margin-top: calc(var(--er-header-offset) + 0.75rem);
        }

        .er-oferta-card {
            position: relative;
            border-radius: 2px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            background: rgba(42, 14, 42, 0.55);
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .er-oferta-card:hover {
            border-color: rgba(249, 226, 123, 0.32);
            box-shadow: 0 10px 28px -16px rgba(0, 0, 0, 0.45);
        }

        /* Painel de respiro cognitivo — ofertas */
        .er-ofertas-panel {
            padding: 0.875rem;
            border-radius: 4px;
            background: linear-gradient(
                145deg,
                rgba(106, 58, 106, 0.38) 0%,
                rgba(74, 36, 82, 0.24) 48%,
                rgba(61, 20, 61, 0.14) 100%
            );
            border: 1px solid rgba(212, 175, 55, 0.14);
            box-shadow: 0 14px 36px -22px rgba(0, 0, 0, 0.5);
        }

        @media (min-width: 640px) {
            .er-ofertas-panel {
                padding: 1rem 1.125rem;
            }
        }

        /* Card âncora — retoque de raiz (preto + gold) */
        .er-oferta-card--anchor {
            background: linear-gradient(160deg, rgba(12, 6, 14, 0.96) 0%, rgba(24, 10, 26, 0.94) 100%);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: inset 0 1px 0 rgba(249, 226, 123, 0.08), 0 8px 24px -16px rgba(0, 0, 0, 0.55);
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .er-oferta-card--anchor:hover {
            border-color: rgba(249, 226, 123, 0.5);
            box-shadow: inset 0 1px 0 rgba(249, 226, 123, 0.12), 0 12px 32px -14px rgba(0, 0, 0, 0.6);
        }

        .er-oferta-card--anchor .er-oferta-card__title {
            color: var(--er-bone);
        }

        .er-oferta-card--anchor .er-oferta-card__desc {
            color: rgba(253, 253, 251, 0.68);
        }

        .er-oferta-card--anchor .er-oferta-card__price-block {
            border-top-color: rgba(212, 175, 55, 0.22);
        }

        .er-oferta-card--anchor .er-oferta-card__price {
            color: var(--er-gold-bright);
            text-shadow: 0 0 20px rgba(249, 226, 123, 0.15);
        }

        .er-oferta-card--anchor .er-oferta-card__price-note {
            color: rgba(212, 175, 55, 0.8);
        }

        /* Card suave — alisamento cintura (roxo claro) */
        .er-oferta-card--soft {
            background: linear-gradient(
                155deg,
                rgba(148, 96, 148, 0.58) 0%,
                rgba(118, 68, 122, 0.45) 55%,
                rgba(90, 48, 98, 0.38) 100%
            );
            border-color: rgba(253, 253, 251, 0.16);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 8px 24px -18px rgba(0, 0, 0, 0.4);
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .er-oferta-card--soft:hover {
            border-color: rgba(253, 253, 251, 0.28);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 28px -16px rgba(0, 0, 0, 0.45);
        }

        .er-oferta-card--soft .er-oferta-card__title {
            color: var(--er-bone);
        }

        .er-oferta-card--soft .er-oferta-card__desc {
            color: rgba(253, 253, 251, 0.78);
        }

        .er-oferta-card--soft .er-oferta-card__price-block {
            border-top-color: rgba(253, 253, 251, 0.14);
        }

        .er-oferta-card--soft .er-oferta-card__price {
            color: var(--er-bone);
        }

        .er-oferta-card--soft .er-oferta-card__price-note {
            color: rgba(253, 253, 251, 0.58);
        }

        .er-oferta-card--soft .er-oferta-card__badge--muted {
            color: rgba(253, 253, 251, 0.9);
            border-color: rgba(253, 253, 251, 0.2);
            background: rgba(253, 253, 251, 0.08);
        }

        /* Card compacto — Segunda a quinta */
        .er-oferta-card--compact {
            padding: 1rem 1.125rem 1.125rem;
            gap: 0;
        }

        @media (min-width: 640px) {
            .er-oferta-card--compact {
                padding: 1.125rem 1.25rem 1.25rem;
            }
        }

        #page-home .identity-oferta.er-oferta-card--compact {
            border-color: rgba(212, 175, 55, 0.22);
            box-shadow: 0 10px 32px -18px rgba(42, 14, 42, 0.35);
        }

        .dark #page-home .identity-oferta.er-oferta-card--compact {
            border-color: rgba(212, 175, 55, 0.18);
        }

        .er-oferta-card__badge {
            display: inline-flex;
            align-self: flex-start;
            margin-bottom: 0.625rem;
            padding: 0.2rem 0.625rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.5625rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--er-gold-bright);
            border-radius: 9999px;
            border: 1px solid rgba(212, 175, 55, 0.35);
            background: rgba(212, 175, 55, 0.1);
        }

        .er-oferta-card__badge.gold-gradient {
            color: var(--er-plum-dark);
            border-color: transparent;
            background: linear-gradient(135deg, var(--er-gold-bronze) 0%, var(--er-gold-deep) 28%, var(--er-gold-bright) 52%, var(--er-gold) 78%, var(--er-gold-bronze) 100%);
        }

        .er-oferta-card__badge--muted {
            color: rgba(249, 226, 123, 0.85);
        }

        .er-oferta-card__eyebrow {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.5625rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(138, 109, 59, 0.85);
            margin-bottom: 0.375rem;
        }

        .dark .er-oferta-card__eyebrow {
            color: rgba(212, 175, 55, 0.75);
        }

        .er-oferta-card__title {
            font-size: clamp(1.0625rem, 2.4vw, 1.25rem);
            line-height: 1.25;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .er-oferta-card__desc {
            font-size: 0.8125rem;
            line-height: 1.55;
            color: rgba(253, 253, 251, 0.62);
            margin-bottom: 0.75rem;
        }

        #page-home .er-oferta-card__desc {
            color: rgba(107, 114, 128, 1);
        }

        .dark #page-home .er-oferta-card__desc {
            color: rgba(156, 163, 175, 1);
        }

        .er-oferta-card__price-block {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 0.375rem 0.625rem;
            padding: 0.625rem 0 0.75rem;
            margin-bottom: 0.625rem;
            border-top: 1px solid rgba(212, 175, 55, 0.12);
        }

        .er-oferta-card__price {
            font-size: clamp(1.375rem, 3vw, 1.625rem);
            font-weight: 600;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .er-oferta-card__price-note {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.5625rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(253, 253, 251, 0.45);
        }

        .er-oferta-card__note {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.5625rem;
            font-weight: 500;
            color: rgba(107, 114, 128, 0.9);
            text-align: center;
        }

        .er-ofertas-grid {
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            align-items: stretch;
        }

        @media (min-width: 640px) {
            .er-ofertas-grid {
                max-width: 100%;
            }
        }

        .er-oferta-card .er-oferta-cta,
        .identity-oferta .er-btn {
            min-height: 2.625rem;
            padding-top: 0.625rem;
            padding-bottom: 0.625rem;
        }

        .er-ofertas-agenda {
            border-color: rgba(212, 175, 55, 0.2) !important;
            background: linear-gradient(
                135deg,
                rgba(42, 14, 42, 0.72) 0%,
                rgba(61, 20, 61, 0.55) 100%
            ) !important;
            box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.06);
        }

        #page-alisamentos .er-ofertas-agenda p:last-child {
            color: rgba(253, 253, 251, 0.55) !important;
        }

        .site-brand__logo {
            width: 2rem;
            height: 2rem;
            object-fit: cover;
            flex-shrink: 0;
            border-radius: 2px;
        }

        @media (min-width: 640px) {
            .site-brand__logo {
                width: 2.25rem;
                height: 2.25rem;
            }
        }

        .er-oferta-cta:active {
            transform: scale(0.98);
        }

        .identity-oferta {
            position: relative;
        }

        .er-oferta-cta--outline {
            color: var(--er-gold-bright);
            background: transparent;
            border: 1px solid rgba(212, 175, 55, 0.45);
        }

        .er-oferta-cta--outline:hover {
            background: linear-gradient(135deg, var(--er-gold-bronze) 0%, var(--er-gold-deep) 28%, var(--er-gold-bright) 52%, var(--er-gold) 78%, var(--er-gold-bronze) 100%);
            color: var(--er-plum-dark);
            border-color: transparent;
        }

        .er-oferta-cta--soft.er-oferta-cta--outline {
            color: var(--er-bone);
            border-color: rgba(253, 253, 251, 0.35);
            background: rgba(253, 253, 251, 0.06);
        }

        .er-oferta-cta--soft.er-oferta-cta--outline:hover {
            background: rgba(253, 253, 251, 0.14);
            color: var(--er-plum-dark);
            border-color: rgba(253, 253, 251, 0.5);
        }

        /* =========================================
           REFINAMENTOS v2 — Mobile · Tablet · Desktop
        ========================================= */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            z-index: 10001;
            padding: 0.625rem 1rem;
            background: var(--er-plum);
            color: var(--er-bone);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-radius: 2px;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 1rem;
            outline: 2px solid var(--er-gold);
            outline-offset: 2px;
        }

        :focus-visible {
            outline: 2px solid var(--er-gold);
            outline-offset: 2px;
        }

        button:focus:not(:focus-visible),
        a:focus:not(:focus-visible) {
            outline: none;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }

        #ofertas-alisamento,
        #tabela-master {
            scroll-margin-top: calc(var(--er-header-offset) + 1rem);
        }

        .vera-headline {
            font-size: clamp(2rem, 5vw, 4rem);
        }

        .topbar-announce span {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: min(100%, 42rem);
        }

        #page-home .identity-quote__title {
            font-size: clamp(1.25rem, 3.5vw, 1.75rem);
        }

        .comparison-input {
            touch-action: pan-y pinch-zoom;
        }

        @media (max-width: 639px) {
            #page-home .identity-comparison .comparison-handle {
                width: 44px;
                height: 44px;
            }

            .btn-luxe,
            .header-wa-btn,
            .identity-cta__btn,
            .er-oferta-cta {
                min-height: 44px;
            }

            .m-nav-btn {
                min-width: 44px;
            }
        }

        @media (min-width: 1024px) {
            .site-container,
            .identity-story > div,
            #ofertas-alisamento .site-container {
                max-width: var(--er-content-max);
            }

            #ofertas-alisamento .site-container {
                max-width: 42rem;
            }

            .er-ofertas-alisamento .er-ofertas-grid {
                max-width: 100%;
            }

            .er-oferta-card {
                min-height: auto;
            }
        }

        .dark .table-container .sticky-col {
            background: rgb(24 24 27);
        }

        .site-brand[role="button"]:focus-visible {
            border-radius: 4px;
        }

        /* =========================================
           LARGE & ULTRA-WIDE SCREENS
        ========================================= */
        @media (min-width: 1536px) {
            :root {
                --er-content-max: 76rem;
            }

            .section-title-lg {
                font-size: clamp(2rem, 3.2vw, 3.75rem);
            }

            .section-title-xl {
                font-size: clamp(1.75rem, 2.6vw, 3rem);
            }

            .section-title {
                font-size: clamp(2.25rem, 3.8vw, 4.25rem);
            }

            .hero-title {
                font-size: clamp(2.75rem, 7vw, 6rem);
            }

            #page-home .identity-hero__photo {
                object-position: 80% 22%;
            }

            #page-home .identity-headline {
                font-size: clamp(2rem, 2.2vw, 3rem);
            }

            #page-home .identity-hero__content {
                max-width: 40rem;
            }

            .identity-reveal-grid {
                max-width: var(--er-content-max);
                margin-left: auto;
                margin-right: auto;
            }

            .comparison-wrapper {
                max-width: min(320px, 100%);
            }

            #cortes-grid {
                gap: 2rem !important;
                align-items: stretch;
            }

            .er-card-body:not(.liso-protocol-card__body):not(.er-corte-card__body) {
                padding: 2rem !important;
            }

            .vera-headline {
                font-size: clamp(2rem, 3vw, 3.25rem);
            }

            #page-cortes .er-feature-block {
                padding: 2.5rem 2rem !important;
            }

            #page-cortes .er-feature-block__copy {
                font-size: 1rem !important;
                line-height: 1.65 !important;
            }

            #page-cortes .er-feature-block__photo {
                width: 16rem !important;
                height: 16rem !important;
            }

            #page-cortes .er-section-header {
                margin-bottom: 3rem !important;
            }

            .alisamentos-liso article h3 {
                font-size: clamp(1.75rem, 2.5vw, 2.5rem) !important;
            }

            .alisamentos-liso .er-table-price,
            .alisamentos-liso [data-er="protocoloValor"] {
                font-size: clamp(2rem, 3vw, 3rem) !important;
            }

            #page-alisamentos .alisamentos-hero .site-container {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }

            #page-alisamentos .liso-protocol-grid {
                gap: 2rem !important;
                align-items: stretch;
            }
        }

        @media (min-width: 1920px) {
            :root {
                --er-content-max: 72rem;
            }

            #page-home .identity-hero {
                background: var(--er-plum-dark);
            }

            #page-home .identity-hero__photo {
                object-position: 82% 22%;
            }

            #page-home .identity-hero__content {
                max-width: 38rem;
                margin-left: clamp(2rem, 6vw, 5rem);
            }

            #page-home .identity-lead {
                font-size: 1rem;
                max-width: 34rem;
            }

            .section-title-lg {
                font-size: clamp(2rem, 2.5vw, 3.25rem);
            }

            .section-title-xl {
                font-size: clamp(1.75rem, 2vw, 2.75rem);
            }

            #cortes-grid {
                gap: 2rem !important;
            }

            footer .max-w-7xl {
                max-width: var(--er-content-max);
            }
        }

        @media (min-width: 1920px) and (min-aspect-ratio: 21/9) {
            #page-home .identity-hero__photo {
                object-position: 84% 20%;
            }
        }

        /* =========================================
           REFINAMENTOS PRO v3 — Design system
        ========================================= */
        ::selection {
            background: rgba(212, 175, 55, 0.28);
            color: var(--er-plum-dark);
        }

        .dark ::selection {
            background: rgba(249, 226, 123, 0.22);
            color: var(--er-bone);
        }

        .er-kicker {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.625rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            line-height: 1.45;
        }

        @media (min-width: 640px) {
            .er-kicker {
                font-size: 0.6875rem;
                letter-spacing: 0.22em;
            }
        }

        .er-section-header {
            margin-bottom: 2.5rem;
        }

        @media (min-width: 1024px) {
            .er-section-header {
                margin-bottom: 3.5rem;
            }
        }

        .er-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-height: 2.75rem;
            padding: 0.8125rem 1.375rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.625rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            line-height: 1.2;
            border-radius: 2px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform 0.22s ease, filter 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
        }

        @media (min-width: 640px) {
            .er-btn {
                font-size: 0.6875rem;
                min-height: 2.875rem;
            }
        }

        .er-btn:hover {
            filter: brightness(1.05);
            transform: translateY(-1px);
        }

        .er-btn:active {
            transform: translateY(0);
        }

        .er-btn--gold,
        .er-btn.gold-gradient {
            background: linear-gradient(135deg, var(--er-gold-bronze) 0%, var(--er-gold-deep) 28%, var(--er-gold-bright) 52%, var(--er-gold) 78%, var(--er-gold-bronze) 100%);
            color: var(--er-plum-dark);
            border-color: rgba(249, 226, 123, 0.25);
        }

        .er-btn--dark {
            background: var(--er-plum-dark);
            color: var(--er-bone);
        }

        .dark .er-btn--dark {
            background: var(--er-bone);
            color: var(--er-plum-dark);
        }

        .er-btn--light {
            background: var(--er-bone);
            color: var(--er-plum-dark);
        }

        .er-btn--outline {
            background: transparent;
            color: var(--er-bone);
            border-color: rgba(212, 175, 55, 0.45);
        }

        .er-btn--outline:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .er-card-badge {
            position: absolute;
            top: -0.625rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            padding: 0.25rem 0.875rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.5625rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            white-space: nowrap;
            border-radius: 9999px;
            box-shadow: 0 4px 14px rgba(42, 14, 42, 0.2);
        }

        .er-corte-card {
            border-radius: 2px;
            overflow: visible;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .er-corte-card__media {
            position: relative;
            margin-bottom: 0.25rem;
        }

        .er-corte-card__badge {
            position: absolute;
            top: 0.75rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            padding: 0.25rem 0.75rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.5625rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            white-space: nowrap;
            border-radius: 9999px;
            box-shadow: 0 4px 14px rgba(42, 14, 42, 0.25);
        }

        .er-corte-card__photo {
            border-radius: 2px 2px 0 0;
        }

        .er-corte-card__body {
            padding: 1.25rem 1.125rem 1.375rem !important;
        }

        @media (min-width: 640px) {
            .er-corte-card__body {
                padding: 1.375rem 1.25rem 1.5rem !important;
            }
        }

        .er-corte-card__title {
            font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
            line-height: 1.25;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .er-corte-card__subtitle {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 0.625rem;
        }

        .er-corte-card__desc {
            font-size: 0.8125rem;
            line-height: 1.55;
            margin-bottom: 0.875rem;
        }

        .er-corte-card__footer {
            padding-top: 0.875rem;
            border-top: 1px solid rgba(212, 175, 55, 0.12);
        }

        .dark .er-corte-card__footer {
            border-top-color: rgba(255, 255, 255, 0.08);
        }

        .er-corte-card__de {
            font-size: 0.625rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            margin-bottom: 0.25rem;
        }

        .er-corte-card__micro {
            display: block;
            margin-top: 0.625rem;
            font-size: 0.5625rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(107, 114, 128, 0.9);
            text-align: center;
        }

        #page-cortes #cortes-grid {
            align-items: stretch;
        }

        #page-cortes #cortes-grid .er-corte-card {
            height: 100%;
        }

        .er-corte-card .er-btn {
            width: 100%;
            min-height: 2.625rem;
        }

        .alisamentos-hero .er-btn--outline {
            color: var(--er-bone);
            border-color: rgba(212, 175, 55, 0.45);
        }

        footer .er-btn--outline {
            color: var(--er-bone);
            border-color: rgba(212, 175, 55, 0.4);
        }

        footer .er-btn--outline:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--er-gold-bright);
        }

        .er-corte-card__price {
            font-size: clamp(1.625rem, 3.5vw, 2.125rem);
            line-height: 1;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .er-corte-card:hover {
            box-shadow: 0 16px 40px -18px rgba(42, 14, 42, 0.35);
        }

        .er-feature-block {
            padding: 2rem 1.25rem;
            border-radius: 2px;
        }

        @media (min-width: 640px) {
            .er-feature-block {
                padding: 2.5rem 2rem;
            }
        }

        @media (min-width: 1024px) {
            .er-feature-block {
                padding: 3rem 2.5rem;
            }
        }

        .er-feature-block__copy {
            font-size: 0.9375rem;
            line-height: 1.65;
        }

        .liso-protocol-card {
            border-radius: 2px;
            overflow: visible;
            transition: box-shadow 0.3s ease;
        }

        .liso-protocol-card:hover {
            box-shadow: 0 16px 40px -18px rgba(42, 14, 42, 0.3);
        }

        .liso-protocol-card__media {
            position: relative;
        }

        .liso-protocol-card__badge {
            position: absolute;
            top: 0.75rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            padding: 0.25rem 0.75rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.5625rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            white-space: nowrap;
            border-radius: 9999px;
            box-shadow: 0 4px 14px rgba(42, 14, 42, 0.25);
        }

        .liso-protocol-card__photo {
            border-radius: 2px 2px 0 0;
        }

        .liso-protocol-card__body {
            padding: 1.375rem 1.25rem 1.5rem !important;
        }

        @media (min-width: 640px) {
            .liso-protocol-card__body {
                padding: 1.5rem 1.375rem 1.625rem !important;
            }
        }

        #page-alisamentos .liso-protocol-grid .liso-protocol-card {
            height: 100%;
        }

        .liso-protocol-card__title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            line-height: 1.15;
            font-weight: 600;
        }

        .liso-protocol-card__brand {
            font-size: clamp(1.75rem, 3.5vw, 2.25rem);
            line-height: 1.1;
        }

        .er-table-wrap {
            box-shadow: 0 12px 40px -20px rgba(42, 14, 42, 0.25);
        }

        .footer-brand__logo {
            width: 2.75rem;
            height: 2.75rem;
            object-fit: contain;
        }

        .footer-brand__name {
            letter-spacing: 0.04em;
        }

        .er-footer-heading {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.625rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--er-gold-bright);
            margin-bottom: 1.25rem;
        }

        .er-footer-link {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.625rem;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(253, 253, 251, 0.55);
            transition: color 0.2s ease;
        }

        .er-footer-link:hover {
            color: var(--er-gold-bright);
        }

        #page-home .identity-cta__btn {
            min-height: 2.875rem;
        }

        .identity-oferta .er-btn {
            width: 100%;
        }

        #page-home .identity-quote__title {
            color: var(--er-bone);
        }

        #page-home .identity-quote__title span {
            color: rgba(253, 253, 251, 0.88);
        }

        .dark #page-home .identity-quote__title,
        .dark #page-home .identity-quote__title span {
            color: var(--er-bone);
        }

        #page-home .identity-quote__body {
            color: rgba(253, 253, 251, 0.62);
        }

        .er-oferta-cta {
            min-height: 2.75rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            letter-spacing: 0.12em;
        }
