        :root {
            --cream: #EAEAE5;
            --dark: #1C1917;
            --navy: #1C1917;
            --gold: #EDC54C;

            /* ===== ESCALA TIPOGRÁFICA UNIFICADA ===== */
            --fs-h1:      clamp(2.1rem, 1.4rem + 2.8vw, 3rem);
            --fs-h2:      clamp(1.75rem, 1.1rem + 2.6vw, 2.6rem);
            --fs-h2-hero: clamp(1.75rem, 0.8rem + 4vw, 3.25rem);
            --fs-h3:      clamp(1.1rem, 0.9rem + 0.8vw, 1.4rem);
        }

        /* Utilitários tipográficos — usados em todo o site */
        .text-h1      { font-size: var(--fs-h1); }
        .text-h2      { font-size: var(--fs-h2); }
        .text-h2-hero { font-size: var(--fs-h2-hero); }
        .text-h3      { font-size: var(--fs-h3); }

        /* ===== TIPOGRAFIA GLOBAL ===== */
        @media (min-width: 768px) {
            h1 {
                font-size: 1.85em;
            }
        }

        @media (min-width: 1024px) {
            h1 {
                font-size: 48px;
            }
        }

        /* ===== ESTILOS BASE & SEÇÕES ===== */
        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--cream);
            color: var(--dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .grid-line-v {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(28, 25, 23, 0.06);
            pointer-events: none;
            z-index: 1;
        }

        .grid-line-h {
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(28, 25, 23, 0.06);
            pointer-events: none;
            z-index: 1;
        }

        .beam-v {
            position: absolute;
            width: 1px;
            height: 100px;
            background: linear-gradient(to bottom, transparent, var(--gold), transparent);
            left: 0;
            animation: beamV 8s infinite linear;
        }

        .beam-h {
            position: absolute;
            height: 1px;
            width: 150px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
            top: 0;
            animation: beamH 8s infinite linear;
        }

        @keyframes beamV {
            0% {
                top: -100px;
            }

            100% {
                top: 105%;
            }
        }

        @keyframes beamH {
            0% {
                left: -150px;
            }

            100% {
                left: 105%;
            }
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            filter: blur(10px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0px);
        }

        /* TEXT MASK REVEAL */
        .text-reveal-wrapper {
            overflow: hidden;
            display: block;
        }

        .text-reveal-content {
            transform: translateY(110%);
            opacity: 0;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
            display: block;
        }

        .reveal-active .text-reveal-content {
            transform: translateY(0);
            opacity: 1;
        }

        /* CONIC BEAM BUTTONS */
        .btn-beam {
            position: relative;
            z-index: 10;
            overflow: hidden;
            display: inline-block;
        }

        .btn-beam::before {
            content: "";
            position: absolute;
            inset: -2px;
            z-index: -1;
            background: conic-gradient(from 90deg at 50% 50%, #E2E8F0 0%, var(--gold) 50%, #E2E8F0 100%);
            animation: spin 3s linear infinite;
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .btn-beam:hover::before {
            opacity: 1;
        }

        .btn-beam-content {
            background-color: #1c1917;
            color: #ffffff;
            position: relative;
            z-index: 10;
            width: 100%;
            height: 100%;
            border-radius: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* FLASHLIGHT EFFECT CARD */
        .flashlight-card {
            background: rgba(255, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
        }

        .flashlight-card::before {
            content: "";
            position: absolute;
            inset: 0px;
            background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
                    rgba(255, 255, 255, 0.8),
                    transparent 40%);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
            z-index: 2;
        }

        .flashlight-card:hover::before {
            opacity: 1;
        }

        /* 3D TRANSFORM PERSPECTIVE */
        .perspective-1000 {
            perspective: 1000px;
        }

        .tilt-card {
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* FILTRO DE RUÍDO */
        .noise {
            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");
        }

        /* === Saúde section ===*/
        .saude-section {
            position: relative;
            background-color: var(--cream);
            color: var(--dark);
            font-family: 'Inter', sans-serif;
            padding: 100px 48px;
            overflow: hidden;
            z-index: 10;
        }

        .saude-section::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 48px;
            width: 1px;
            background: rgba(28, 25, 23, 0.05);
            pointer-events: none;
            z-index: 1;
        }

        .saude-section::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            right: 48px;
            width: 1px;
            background: rgba(28, 25, 23, 0.05);
            pointer-events: none;
            z-index: 1;
        }

        .saude-header {
            display: grid;
            grid-template-columns: 1.15fr 1.15fr;
            gap: 34px;
            align-items: start;
            position: relative;
            z-index: 2;
            margin-bottom: 64px;
        }

        .saude-header-left {
            display: flex;
            flex-direction: column;
        }

        .saude-header-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding-top: 8px;
        }

        .saude-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: var(--fs-h2);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.025em;
            color: #212121;
            margin: 0;
        }

        .saude-desc {
            font-size: 1rem;
            line-height: 1.65;
            color: #525252;
            font-weight: 400;
            margin: 0;
        }

        .saude-desc-strong {
            color: var(--dark);
            font-weight: 600;
        }

        .saude-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        .saude-card {
            padding: 36px 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 24px;
            min-height: 280px;
            box-sizing: border-box;
            border-radius: 16px;
            border: 1px solid rgba(28, 25, 23, 0.08);
            box-shadow: none;
        }

        .saude-card-top {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        .saude-card-icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(28, 25, 23, 0.03);
            border: 1px solid rgba(28, 25, 23, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #44403c;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .saude-card:hover .saude-card-icon-wrapper {
            background: rgba(237, 197, 76, 0.15);
            border-color: rgba(237, 197, 76, 0.3);
            color: var(--dark);
            transform: scale(1.05) rotate(5deg);
        }

        .saude-card-icon {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 1.5;
            fill: none;
        }

        .saude-card-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #212121;
            margin: 0;
        }

        .saude-card-desc {
            font-size: 0.875rem;
            line-height: 1.5;
            color: #1c1c1c;
            margin: 0;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 640px) {
            .saude-card-desc {
                font-size: 1rem;
            }
        }

        .saude-card::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
            opacity: 0;
            transform: scaleX(0.8);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 3;
        }

        .saude-card:hover::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .saude-divider {
            height: 1px;
            background: linear-gradient(to right, rgba(28, 25, 23, 0.02), rgba(28, 25, 23, 0.08) 20%, rgba(28, 25, 23, 0.08) 80%, rgba(28, 25, 23, 0.02));
            margin: 64px 0;
            border: none;
            position: relative;
            z-index: 2;
        }

        .saude-indicators-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            position: relative;
            z-index: 2;
        }

        .saude-indicators-row::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 1px;
            height: 60px;
            background: rgba(28, 25, 23, 0.08);
        }

        .saude-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .saude-indicator-value {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.03em;
            color: var(--dark);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .saude-indicator-value span {
            color: var(--gold);
        }

        .saude-indicator-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: #78716c;
            text-transform: uppercase;
            margin: 0;
        }

        .saude-stagger-1 {
            transition-delay: 60ms !important;
        }

        .saude-stagger-2 {
            transition-delay: 180ms !important;
        }

        .saude-stagger-3 {
            transition-delay: 300ms !important;
        }

        .saude-stagger-4 {
            transition-delay: 420ms !important;
        }

        @media (max-width: 1200px) {
            .saude-section {
                padding: 80px 32px;
            }

            .saude-section::before {
                left: 32px;
            }

            .saude-section::after {
                right: 32px;
            }

            .saude-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .saude-card {
                min-height: 250px;
                padding: 28px;
            }
        }

        @media (max-width: 768px) {
            .saude-section {
                padding: 64px 24px;
            }

            .saude-section::before,
            .saude-section::after {
                display: none;
            }

            .saude-header {
                grid-template-columns: 1fr;
                gap: 32px;
                margin-bottom: 48px;
            }

            .saude-header-right {
                padding-top: 0;
            }

            .saude-divider {
                margin: 48px 0;
            }

            .saude-indicators-row::after {
                display: none;
            }

            .saude-indicators-row {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .saude-indicator-value {
                font-size: 3.2rem;
            }
        }

        @media (max-width: 480px) {
            .saude-section {
                padding: 56px 24px;
            }

            .saude-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .saude-card {
                min-height: auto;
                padding: 24px;
            }

            .saude-desc {
                font-size: 0.95rem;
            }
        }

        .proposta-card {
            position: relative;
            z-index: 1;
        }

        .proposta-card.reveal {
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        .proposta-card:hover {
            transform: translateY(-4px) !important;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -6px rgba(0, 0, 0, 0.08) !important;
            background-color: rgba(255, 255, 255, 0.75) !important;
            z-index: 10;
        }

        .proposta-card:nth-child(2):hover {
            background-color: rgba(250, 249, 245, 0.98) !important;
        }

        /* EFEITO DE ESTRELAS CINTILANTES (TWINKLING STARS) */
        #stars-container {
            position: absolute;
            inset: 0;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
        }

        .star {
            position: absolute;
            background-color: #ffffff;
            border-radius: 50%;
            animation: twinkle 3s infinite ease-in-out;
            pointer-events: none;
        }

        @keyframes twinkle {

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

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

        .dark-grid-line-v {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255, 255, 255, 0.05);
            pointer-events: none;
            z-index: 2;
        }

        .doctor-bio-section {
            background-color: #1C1917;
            color: #ffffff;
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .doctor-card-frame {
            position: relative;
            background: rgba(28, 25, 23, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .doctor-card-frame:hover {
            border-color: rgba(237, 197, 76, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), 0 0 40px rgba(237, 197, 76, 0.05);
        }

        .doctor-card-frame img {
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .doctor-card-frame:hover img {
            transform: scale(1.03);
        }

        .doctor-parallax-wrapper {
            will-change: transform;
            transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .programa-card {
            transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .programa-card:hover {
            transform: translateY(-6px);
            background-color: rgba(255, 255, 255, 0.95);
            border-color: rgba(237, 197, 76, 0.3);
        }

        .programa-card::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
            opacity: 0;
            transform: scaleX(0.7);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 3;
        }

        .programa-card:hover::after {
            opacity: 1;
            transform: scaleX(1);
        }

        /* Método section — visual states only; scroll logic in assets/js/metodo.js */
        .metodo-section {
            position: relative;
            overflow-x: hidden;
        }

        .metodo-track {
            position: relative;
        }

        .metodo-stage {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* contém o glow; seguro (não é ancestral do pin) */
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        /* Modo interativo: o pin é feito pelo GSAP ScrollTrigger (robusto,
           independe de overflow de ancestrais). O stage preenche a tela. */
        .metodo-section.is-ready .metodo-stage {
            min-height: 100vh;
            padding-top: 0;
            padding-bottom: 0;
        }

        @supports (min-height: 100svh) {
            .metodo-section.is-ready .metodo-stage {
                min-height: 100svh;
            }
        }

        /* Cabeçalho */
        .metodo-eyebrow {
            display: inline-block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 0.85rem;
        }

        .metodo-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: #212121;
            letter-spacing: -0.02em;
            line-height: 1.12;
            font-size: var(--fs-h2);
            max-width: 22ch;
            margin: 0 auto;
        }

        /* Container da timeline */
        .metodo-timeline {
            position: relative;
            --progress: 0;
            --node-size: 62px;
        }

        /* Linha + preenchimento progressivo (horizontal no desktop) */
        .metodo-line {
            position: absolute;
            top: calc(var(--node-size) / 2);
            left: calc(50% / var(--steps, 4));
            right: calc(50% / var(--steps, 4));
            height: 2px;
            background: rgba(28, 25, 23, 0.10);
            border-radius: 2px;
            overflow: hidden;
        }

        .metodo-line-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: calc(var(--progress, 0) * 100%);
            background: linear-gradient(90deg, var(--gold), #be9e3d);
            border-radius: 2px;
            will-change: width;
        }

        /* Passos */
        .metodo-steps {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(var(--steps, 4), minmax(0, 1fr));
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .metodo-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.25rem;
            min-width: 0;
        }

        /* Círculo (node) — estados: idle / active / done */
        .metodo-node {
            position: relative;
            flex: 0 0 auto;
            width: var(--node-size);
            height: var(--node-size);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border: 1px solid #d6d3d1;
            color: #a8a29e;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 0 0 6px var(--cream);
            transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.45s ease, border-color 0.45s ease,
                color 0.45s ease, box-shadow 0.45s ease;
        }

        .metodo-node-num {
            transition: opacity 0.3s ease;
        }

        .metodo-node-check {
            position: absolute;
            font-size: 1.4rem;
            opacity: 0;
            transform: scale(0.5);
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Conteúdo textual (fade + translate + blur) */
        .metodo-content {
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.6s ease;
        }

        .metodo-step-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: #212121;
            margin-bottom: 0.4rem;
        }

        .metodo-step-desc {
            font-size: 0.85rem;
            line-height: 1.6;
            color: #78716c;
            font-weight: 300;
            padding: 0 0.5rem;
        }

        /* --- Estados ATIVO/CONCLUÍDO (valem sempre) --- */
        .metodo-step[data-state="active"] .metodo-node {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--dark);
            transform: scale(1.12);
            box-shadow: 0 0 0 6px var(--cream),
                0 0 0 12px rgba(237, 197, 76, 0.18),
                0 10px 26px rgba(237, 197, 76, 0.35);
        }

        .metodo-step[data-state="done"] .metodo-node {
            background: var(--dark);
            border-color: var(--dark);
            color: #ffffff;
        }

        .metodo-step[data-state="done"] .metodo-node-num {
            opacity: 0;
        }

        .metodo-step[data-state="done"] .metodo-node-check {
            opacity: 1;
            transform: scale(1);
        }

        /* --- Apenas no modo interativo: passos futuros recuados/suaves --- */
        .metodo-section.is-ready .metodo-step[data-state="idle"] .metodo-content {
            opacity: 0.28;
            transform: translateY(14px);
            filter: blur(3px);
        }

        .metodo-section.is-ready .metodo-step[data-state="active"] .metodo-content,
        .metodo-section.is-ready .metodo-step[data-state="done"] .metodo-content {
            opacity: 1;
            transform: none;
            filter: none;
        }

        /* --- Fallback estático (sem JS / movimento reduzido): tudo legível --- */
        .metodo-section:not(.is-ready) .metodo-node {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--dark);
        }

        .metodo-section:not(.is-ready) .metodo-node-check {
            display: none;
        }

        .metodo-section:not(.is-ready) .metodo-line-fill {
            width: 100%;
        }

        /* ===== Responsivo: timeline VERTICAL em mobile e tablet ===== */
        @media (max-width: 1023px) {

            .metodo-eyebrow {
                background: rgba(255, 255, 255, 0.7);
                border: 1px solid rgba(28, 25, 23, 0.08);
                border-radius: 999px;
                padding: 6px 14px;
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                box-shadow: 0 4px 14px -8px rgba(28, 25, 23, 0.15);
            }

            /* Timeline centralizada sob o header (corrige o desalinhamento) */
            .metodo-timeline {
                --node-size: 52px;
                max-width: 480px;
                margin-left: auto;
                margin-right: auto;
            }

            .metodo-steps {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .metodo-step {
                flex-direction: row;
                align-items: flex-start;
                /* topo do card alinhado ao topo do círculo */
                text-align: left;
                gap: 1.5rem;
                /* compensa o anel de 6px do nó -> ~18px visuais até o card */
            }

            .metodo-content {
                flex: 1;
                min-width: 0;
                padding: 14px 18px;
                background: rgba(255, 255, 255, 0.72);
                border: 1px solid rgba(28, 25, 23, 0.06);
                border-radius: 14px;
                box-shadow: 0 12px 28px -18px rgba(28, 25, 23, 0.16);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                transition: border-color 0.4s ease, box-shadow 0.4s ease;
            }

            .metodo-step-desc {
                padding: 0;
            }

            .metodo-node {
                align-self: flex-start;
            }

            /* Linha vertical conectando os nós (no rail à esquerda) */
            .metodo-line {
                top: calc(var(--node-size) / 2);
                bottom: calc(var(--node-size) / 2);
                left: calc(var(--node-size) / 2);
                right: auto;
                width: 2px;
                height: auto;
            }

            .metodo-line-fill {
                width: 100%;
                height: calc(var(--progress, 0) * 100%);
            }

            .metodo-section:not(.is-ready) .metodo-line-fill {
                height: 100%;
                width: 100%;
            }
        }

        /* Tablet: nós um pouco maiores */
        @media (min-width: 640px) and (max-width: 1023px) {
            .metodo-stage {
                max-width: 100%;
            }

            .metodo-timeline {
                --node-size: 56px;
            }
        }

        /* Mobile estreito: iguala a altura dos cards (títulos longos quebram
           em 2 linhas e deixariam os cards desiguais). O conteúdo segue
           alinhado ao topo, então o título continua na altura do número. */
        @media (max-width: 479px) {
            .metodo-content {
                min-height: 132px;
            }
        }

        /* ===== Acessibilidade: respeita "reduzir movimento" ===== */
        @media (prefers-reduced-motion: reduce) {
            .metodo-content {
                transition: none;
            }

            .metodo-node {
                transition: none;
            }
        }

        /* === Depoimentos section === */
        .testimonial-section-custom {
            position: relative;
            background: linear-gradient(to bottom, #FAF9F5, #EAEAE5 50%, #FAF9F5);
            padding: 100px 48px;
            overflow: hidden;
            z-index: 10;
        }

        .testimonial-section-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 48px;
            right: 48px;
            height: 1px;
            background: rgba(28, 25, 23, 0.08);
            pointer-events: none;
            z-index: 1;
        }

        .testimonial-pin-light {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(237, 197, 76, 0.045) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
            filter: blur(60px);
        }

        .testimonial-grid-custom {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
            z-index: 2;
        }

        .testimonial-card-custom {
            padding: 40px 36px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
            box-sizing: border-box;
            border-radius: 20px;
            border: 1px solid rgba(28, 25, 23, 0.06);
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 10px 30px -15px rgba(28, 25, 23, 0.03);
            transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .testimonial-card-custom:hover,
        .testimonial-card-custom.reveal.active:hover {
            transform: translateY(-6px);
            background-color: rgba(255, 255, 255, 0.95);
            border-color: rgba(237, 197, 76, 0.3);
            box-shadow: 0 25px 50px -20px rgba(28, 25, 23, 0.08), 0 0 30px rgba(237, 197, 76, 0.03);
        }

        .testimonial-card-custom::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--gold, #EDC54C), transparent);
            opacity: 0;
            transform: scaleX(0.7);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 3;
            border-radius: 0 0 20px 20px;
        }

        .testimonial-card-custom:hover::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .testimonial-top-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .testimonial-stars-custom {
            display: flex;
            gap: 4px;
            color: var(--gold, #EDC54C);
        }

        .testimonial-star-custom {
            font-size: 1rem;
        }

        .testimonial-quote-svg {
            width: 24px;
            height: 24px;
            color: rgba(28, 25, 23, 0.06);
            transition: color 0.5s ease, transform 0.5s ease;
        }

        .testimonial-card-custom:hover .testimonial-quote-svg {
            color: rgba(237, 197, 76, 0.25);
            transform: scale(1.1) rotate(-5deg);
        }

        .testimonial-text-custom {
            font-size: 1rem;
            line-height: 1.65;
            color: #57534e;
            font-weight: 300;
            margin: 0;
            flex-grow: 1;
        }

        .testimonial-card-custom:hover .testimonial-text-custom {
            color: var(--dark, #1C1917);
        }

        .testimonial-author-custom {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(28, 25, 23, 0.06);
            transition: border-color 0.5s ease;
        }

        .testimonial-card-custom:hover .testimonial-author-custom {
            border-color: rgba(28, 25, 23, 0.12);
        }

        .testimonial-avatar-custom {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #FAF9F5;
            color: var(--dark, #1C1917);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            border: 1px solid rgba(28, 25, 23, 0.08);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        .testimonial-card-custom:hover .testimonial-avatar-custom {
            background: rgba(237, 197, 76, 0.12);
            border-color: rgba(237, 197, 76, 0.25);
            transform: scale(1.05);
        }

        .testimonial-info-custom {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .testimonial-name-custom {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark, #1C1917);
        }

        .testimonial-role-custom {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.68rem;
            font-weight: 505;
            letter-spacing: 0.12em;
            color: #a8a29e;
            text-transform: uppercase;
        }

        /* Reveal animation sequence */
        @media (min-width: 768px) {

            /* Desktop sequence: left to right */
            .testimonial-card-custom.reveal {
                opacity: 0;
                transform: translateX(-35px);
                filter: blur(6px);
                transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            }

            .testimonial-card-custom.reveal.active {
                opacity: 1;
                transform: translateX(0);
                filter: blur(0px);
            }
        }

        @media (max-width: 767px) {

            /* Mobile sequence: top to bottom */
            .testimonial-card-custom.reveal {
                opacity: 0;
                transform: translateY(-25px);
                filter: blur(6px);
                transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                    filter 1s cubic-bezier(0.16, 1, 0.3, 1);
            }

            .testimonial-card-custom.reveal.active {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0px);
            }
        }

        /* ===== Responsividade ===== */
        @media (max-width: 1200px) {
            .testimonial-section-custom {
                padding: 80px 32px;
            }

            .testimonial-section-custom::before {
                left: 32px;
                right: 32px;
            }

            .testimonial-grid-custom {
                gap: 24px;
            }
        }

        @media (max-width: 1024px) {
            .testimonial-grid-custom {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ===== 3 cards em 2 colunas: centraliza o 3º card (órfão) ===== */
        /* Depoimentos: 2 colunas entre 769px e 1024px */
        @media (min-width: 769px) and (max-width: 1024px) {
            .testimonial-card-custom:last-child:nth-child(odd) {
                grid-column: 1 / -1;
                justify-self: center;
                width: calc(50% - 12px);
                /* largura de 1 coluna (gap 24px) */
            }
        }

        /* Blog (index): 2 colunas entre 640px e 1023px */
        @media (min-width: 640px) and (max-width: 1023px) {
            #blog .post-card:last-child:nth-child(odd) {
                grid-column: 1 / -1;
                justify-self: center;
                width: calc(50% - 16px);
                /* largura de 1 coluna (gap 32px) */
            }
        }

        /* Programas (index): 2 colunas entre 768px e 1023px */
        @media (min-width: 768px) and (max-width: 1023px) {
            #programas .programa-card:last-child:nth-child(odd) {
                grid-column: 1 / -1;
                justify-self: center;
                width: calc(50% - 12px);
                /* largura de 1 coluna (gap 24px) */
            }
        }

        @media (max-width: 768px) {
            .testimonial-section-custom {
                padding: 64px 24px;
            }

            .testimonial-section-custom::before {
                display: none;
            }

            .testimonial-grid-custom {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            /* Cards mais definidos e limpos no mobile (mantendo a estética do design system) */
            .testimonial-card-custom {
                padding: 24px 22px;
                min-height: auto;
                border-radius: 16px;
                background: rgba(255, 255, 255, 0.92);
                border: 1px solid rgba(28, 25, 23, 0.07);
                box-shadow: 0 14px 30px -18px rgba(28, 25, 23, 0.18);
            }

            .testimonial-top-custom {
                margin-bottom: 16px;
            }

            .testimonial-star-custom {
                font-size: 0.85rem;
            }

            .testimonial-quote-svg {
                width: 26px;
                height: 26px;
                color: rgba(237, 197, 76, 0.2);
                /* aspa em dourado sutil, mais intencional */
            }

            .testimonial-text-custom {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .testimonial-author-custom {
                margin-top: 18px;
                padding-top: 16px;
                gap: 12px;
            }

            .testimonial-avatar-custom {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }

            .testimonial-name-custom {
                font-size: 0.9rem;
            }

            .testimonial-role-custom {
                font-size: 0.62rem;
            }
        }

        /* ===== Acessibilidade motion override ===== */
        @media (prefers-reduced-motion: reduce) {
            .testimonial-card-custom.reveal {
                opacity: 1 !important;
                transform: none !important;
                filter: none !important;
                transition: none !important;
            }

            .testimonial-card-custom::after {
                transition: none !important;
            }

            .testimonial-quote-svg {
                transition: none !important;
            }
        }

        /* === CTA section === */
        @media (min-width: 768px) {
            .cta-reveal-container-custom {
                position: relative;
                height: 100vh;
                z-index: 1;
                background-color: #1C1917;
            }

            .cta-section-custom {
                position: sticky;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                z-index: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #1C1917;
                box-sizing: border-box;
            }
        }

        @media (max-width: 767px) {
            .cta-reveal-container-custom {
                position: relative;
                width: 100%;
                height: 100vh;
                height: 100dvh;
                z-index: 10;
                background-color: #1C1917;
            }

            .cta-section-custom {
                position: relative;
                width: 100%;
                height: 100%;
                min-height: 100vh;
                min-height: 100dvh;
                padding: 40px 24px;
                z-index: 10;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #1C1917;
                box-sizing: border-box;
            }
        }

        .cta-section-custom {
            color: #ffffff;
            overflow: hidden;
        }

        .cta-glow-light {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(237, 197, 76, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 2;
            filter: blur(60px);
        }

        .cta-stars-container {
            position: absolute;
            inset: 0;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
        }

        .cta-section-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 48px;
            right: 48px;
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
            pointer-events: none;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .cta-section-custom::before {
                left: 24px;
                right: 24px;
            }
        }

        /* ============================================================= */
        /* TRANSIÇÃO DIA → NOITE (estilo Sirocco, cream → dark)          */
        /* ============================================================= */
        .cta-day-night-transition {
            position: relative;
            background: linear-gradient(to bottom, var(--cream) 0%, #111110 100%);
            min-height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .transition-stars-layer {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        .transition-divider-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            padding: 4rem 1.5rem;
        }

        /* Override reveal: começa de baixo mas mais sutil aqui */
        .cta-day-night-transition .reveal {
            transform: translateY(20px);
        }

        .transition-divider-line {
            width: 1px;
            height: 56px;
            background: linear-gradient(to bottom,
                    rgba(237, 197, 76, 0),
                    rgba(237, 197, 76, 0.45),
                    rgba(237, 197, 76, 0));
        }

        .transition-divider-quote {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1rem, 0.75rem + 1.5vw, 1.35rem);
            font-weight: 300;
            font-style: italic;
            color: rgba(255, 255, 255, 0.65);
            text-align: center;
            line-height: 1.8;
            letter-spacing: -0.01em;
            max-width: 34ch;
        }

        @media (prefers-reduced-motion: reduce) {
            .cta-day-night-transition .reveal {
                transform: none;
            }
        }