        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

        .legacy-content * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #040a1a;
            --dark-navy: #060d1f;
            --gold: #9B6B3C;
            --gray: #E6E8EB;
            --light-gray: #f8f9fa;
            --text-primary: #1a1a1a;
            --text-secondary: #666;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
            background: var(--light-gray);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ============ NAVBAR ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 72px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(18, 33, 78, 0.08);
            z-index: 999;
            display: flex;
            align-items: center;
            padding: 0 clamp(1rem, 5%, 60px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .navbar-logo {
            font-size: clamp(16px, 4vw, 20px);
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.5px;
            cursor: pointer;
            white-space: nowrap;
            margin-right: clamp(16px, 3vw, 24px);
        }

        .navbar-logo span {
            color: var(--gold);
        }

        .navbar-spacer {
            flex: 1;
        }

        .navbar-links {
            display: flex;
            gap: clamp(24px, 5vw, 40px);
        }

        .navbar-link {
            font-size: clamp(12px, 3vw, 14px);
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
            position: relative;
            white-space: nowrap;
        }

        .navbar-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .navbar-link:hover {
            color: var(--gold);
        }

        .navbar-link:hover::after {
            width: 100%;
        }


        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--navy);
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            gap: 0;
            padding: 20px;
            border-bottom: 1px solid rgba(18, 33, 78, 0.08);
            z-index: 998;
            overflow-y: auto;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            padding: 14px 0;
            color: var(--text-primary);
            text-decoration: none;
            border-bottom: 1px solid rgba(18, 33, 78, 0.08);
            font-weight: 500;
            font-size: 14px;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu a[style*="color: var(--gold)"] {
            color: var(--gold);
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }
            .navbar-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .navbar-spacer {
                flex: 1;
            }
        }

        /* ============ HERO SECTION ============ */
        .hero {
            margin-top: 72px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('/Imagens/Fundo.png');
            background-position: center;
            background-size: cover;
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-color: var(--navy);
        }


        .hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.15;
            z-index: 1;
        }


        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 8vw, 100px);
            align-items: center;
            padding: 0 clamp(1rem, 5%, 60px);
        }

        .hero-text {
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-text h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 8vw, 64px);
            font-weight: 400;
            font-style: italic;
            line-height: 1.1;
            margin-bottom: clamp(20px, 4vw, 28px);
            letter-spacing: -1.5px;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-text h1 em {
            color: var(--gold);
            font-style: normal;
            display: inline-block;
            position: relative;
            background: linear-gradient(135deg, #9B6B3C 0%, #d4a946 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text h1 em::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), transparent);
            border-radius: 2px;
        }

        .hero-identity {
            display: inline-block;
            background: rgba(155, 107, 60, 0.15);
            border-left: 4px solid #9B6B3C;
            padding: 16px 20px;
            border-radius: 8px;
            margin-bottom: 24px;
            animation: pulse-border 2s ease-in-out infinite;
        }

        .hero-identity strong {
            color: #9B6B3C;
            font-weight: 400;
            font-style: italic;
            font-size: 14.3px;
            letter-spacing: 1px;
        }

        @keyframes pulse-border {
            0%, 100% { border-left-color: #9B6B3C; }
            50% { border-left-color: #9B6B3C; }
        }

        .hero-subtitle {
            font-size: clamp(15px, 4vw, 18px);
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: clamp(32px, 8vw, 48px);
            max-width: 500px;
            font-style: normal;
        }

        .hero-subtitle strong {
            color: #9B6B3C;
            font-weight: 700;
        }

        .hero-cta {
            display: flex;
            gap: clamp(12px, 4vw, 20px);
            margin-bottom: clamp(40px, 10vw, 60px);
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, #d4a946 100%);
            color: var(--navy);
            padding: clamp(12px, 2.5vw, 16px) clamp(28px, 6vw, 40px);
            border-radius: 8px;
            font-weight: 700;
            font-size: clamp(13px, 3vw, 15px);
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 12px 40px rgba(155, 107, 60, 0.35);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 50px rgba(155, 107, 60, 0.45);
        }

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

        .btn-secondary {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            padding: clamp(12px, 2.5vw, 16px) clamp(28px, 6vw, 40px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            font-weight: 700;
            font-size: clamp(13px, 3vw, 15px);
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-4px);
        }

        /* ============ COOKIE BANNER STYLES ============ */
        .btn-cookie {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            padding: 12px 28px;
            background: linear-gradient(135deg, #9B6B3C 0%, #d4a946 100%);
            color: #040a1a;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            min-height: 44px;
            box-shadow: 0 12px 40px rgba(155, 107, 60, 0.35);
            white-space: nowrap;
        }

        .btn-cookie::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s;
        }

        .btn-cookie:hover::before {
            left: 100%;
        }

        .btn-cookie:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 50px rgba(155, 107, 60, 0.45);
        }

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

        .btn-cookie-ghost {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            padding: 12px 28px;
            background: rgba(4, 10, 26, 0.08);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: #040a1a;
            border: 2px solid rgba(4, 10, 26, 0.2);
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            position: relative;
            min-height: 44px;
            white-space: nowrap;
        }

        .btn-cookie-ghost:hover {
            background: rgba(4, 10, 26, 0.15);
            border-color: rgba(4, 10, 26, 0.4);
            transform: translateY(-4px);
        }

        .hero-stats {
            display: flex;
            gap: clamp(24px, 6vw, 50px);
            padding-top: clamp(16px, 4vw, 20px);
            flex-wrap: wrap;
        }

        .stat {
            border-left: 3px solid var(--gold);
            padding-left: 20px;
        }

        .stat-number {
            font-size: clamp(24px, 6vw, 32px);
            font-weight: 800;
            color: var(--gold);
            font-variant-numeric: tabular-nums;
            min-height: 1.2em;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .hero-visual {
            position: relative;
            height: clamp(300px, 50vw, 500px);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: slideInRight 0.8s ease-out;
        }

        .triangle-float {
            position: relative;
            width: 100%;
            height: 100%;
            animation: float 6s ease-in-out infinite;
        }

        .triangle-svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 30px 60px rgba(203, 151, 53, 0.25)) drop-shadow(0 0 40px rgba(203, 151, 53, 0.15));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotateZ(0deg); }
            50% { transform: translateY(-30px) rotateZ(2deg); }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: clamp(2rem, 8vw, 60px);
                padding: 0 clamp(1rem, 5%, 40px);
            }
            .hero-visual {
                display: none;
            }
            .section-wrapper {
                padding: 0 clamp(1rem, 5%, 40px) !important;
            }
            .navbar-links {
                gap: clamp(16px, 3vw, 32px);
            }
            .hero {
                margin-top: 72px;
                min-height: auto;
                padding: clamp(40px, 10vw, 60px) 0;
            }
            .hero-content {
                padding: 0 clamp(1rem, 4%, 20px);
                gap: clamp(1rem, 6vw, 40px);
            }
            .hero-text h1 {
                font-size: clamp(28px, 6vw, 40px);
            }
            .hero-subtitle {
                font-size: clamp(14px, 4vw, 16px);
            }
            .hero-cta {
                gap: clamp(12px, 3vw, 16px);
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                padding: clamp(12px, 3vw, 16px) clamp(24px, 5vw, 40px);
                font-size: clamp(13px, 3vw, 15px);
            }
            .navbar {
                padding: clamp(12px, 3vw, 16px) clamp(1rem, 4%, 20px);
            }
            .navbar-links {
                display: none;
            }
            .automatic-intro {
                padding: clamp(20px, 5vw, 28px);
                margin-bottom: clamp(32px, 8vw, 48px);
            }
            .inconformado-traits {
                gap: clamp(12px, 3vw, 24px);
            }
            .pillars-grid {
                gap: clamp(16px, 4vw, 24px);
            }
        }

        /* ============ AUTOMATIC LIVING SECTION ============ */
        .automatic-section {
            background-image: url('/Imagens/Fundo_claro.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-color: white;
            padding: clamp(60px, 15vw, 120px) clamp(1rem, 5%, 60px);
            position: relative;
            overflow: hidden;
            border-top: 3px solid transparent;
            border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
        }

        .automatic-section::before {
            content: '';
            position: absolute;
            top: -400px;
            left: -300px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(155, 107, 60, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
        }

        .section-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-label {
            font-size: clamp(0.6rem, 1.2vw, 0.7rem);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #9B6B3C;
            margin-bottom: 16px;
            font-weight: 600;
            transition: letter-spacing 0.35s ease;
        }

        .section-title {
            font-size: clamp(28px, 7vw, 48px);
            font-weight: 400;
            font-style: italic;
            color: var(--navy);
            margin-bottom: clamp(40px, 10vw, 60px);
            line-height: 1.2;
            letter-spacing: -1px;
            font-family: 'Cormorant Garamond', serif;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #9B6B3C, transparent);
            opacity: 0;
            transition: all 0.35s ease;
        }

        .section-title em {
            color: #9B6B3C;
            font-style: italic;
        }

        .section p {
            text-indent: 1.5em;
        }

        .section:hover .section-label {
            letter-spacing: 0.4em;
        }

        .section:hover .section-title::after {
            opacity: 1;
            width: 100px;
        }

        .automatic-intro {
            background: linear-gradient(135deg, rgba(155, 107, 60, 0.08) 0%, rgba(155, 107, 60, 0.04) 100%);
            border-left: 4px solid #9B6B3C;
            padding: clamp(28px, 7vw, 40px);
            border-radius: 12px;
            margin-bottom: clamp(40px, 10vw, 60px);
            max-width: 800px;
        }

        .automatic-intro p {
            font-size: clamp(15px, 4vw, 18px);
            line-height: 1.8;
            color: var(--text-primary);
        }

        .automatic-intro strong {
            color: #9B6B3C;
            font-weight: 700;
        }

        .years-counter {
            font-size: 32px;
            font-weight: 800;
            color: #9B6B3C;
            display: inline-block;
            margin: 0 8px;
        }

        .automatic-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(20px, 5vw, 40px);
            max-width: 900px;
            margin: 0 auto;
        }

        .automatic-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(230, 232, 235, 0.3) 100%);
            border: 1px solid rgba(18, 33, 78, 0.08);
            padding: clamp(32px, 8vw, 48px) clamp(24px, 6vw, 40px);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .automatic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .automatic-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .automatic-card:hover {
            transform: translateY(-16px);
            box-shadow: 0 20px 60px rgba(18, 33, 78, 0.12);
            border-color: rgba(203, 151, 53, 0.3);
        }

        .automatic-card:hover::before {
            transform: scaleX(1);
        }

        .automatic-card:hover::after {
            opacity: 1;
        }

        .automatic-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .automatic-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .automatic-card .card-icon {
            font-size: clamp(24px, 6vw, 32px);
            margin-bottom: clamp(8px, 2vw, 12px);
            display: inline-block;
        }

        /* ============ INCONFORMADO SECTION ============ */
        .inconformado-section {
            background-image: url('/Imagens/Fundo.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-color: var(--navy);
            color: white;
            padding: clamp(60px, 15vw, 100px) clamp(1rem, 5%, 60px);
            position: relative;
            overflow: hidden;
        }

        .inconformado-section::before {
            content: '';
            position: absolute;
            top: -300px;
            right: -300px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
        }

        .inconformado-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .inconformado-label {
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .inconformado-title {
            font-size: clamp(32px, 7vw, 52px);
            font-weight: 400;
            font-style: italic;
            margin-bottom: clamp(24px, 6vw, 32px);
            line-height: 1.2;
            letter-spacing: -1px;
            font-family: 'Cormorant Garamond', serif;
        }

        .inconformado-title em {
            color: var(--gold);
            font-style: normal;
            display: block;
        }

        .inconformado-text {
            font-size: clamp(15px, 4vw, 18px);
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: clamp(32px, 8vw, 40px);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .inconformado-traits {
            margin-top: clamp(40px, 10vw, 60px);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .inconformado-traits-track {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: clamp(16px, 4vw, 32px);
        }

        /* Clones só existem pro carrossel em loop do mobile (ver media query
           abaixo) - escondidos no grid do desktop. */
        .inconformado-traits-track .trait-badge[aria-hidden='true'] {
            display: none;
        }

        .trait-badge {
            background: rgba(208, 212, 220, 0.15);
            border: 1px solid rgba(208, 212, 220, 0.3);
            padding: 24px;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .trait-badge:hover {
            background: rgba(208, 212, 220, 0.25);
            border-color: rgba(208, 212, 220, 0.5);
            transform: translateY(-4px);
        }

        .trait-badge p {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
        }

        /* Carrossel em loop (mobile): a track tem os 6 badges reais + 6
           clones (aria-hidden, marcados no HTML) lado a lado; a animação
           translada metade da largura total (0 a -50%) e reinicia - como a
           segunda metade é idêntica à primeira, o corte é imperceptível. */
        @media (max-width: 768px) {
            .inconformado-traits {
                overflow: hidden;
                max-width: 100%;
            }

            .inconformado-traits-track {
                display: flex;
                width: max-content;
                gap: 16px;
                animation: traitsMarquee 24s linear infinite;
            }

            .inconformado-traits-track .trait-badge {
                display: block;
                flex: 0 0 auto;
                width: 240px;
            }
        }

        @keyframes traitsMarquee {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .automatic-section {
                padding: 80px 20px;
            }
            /* Carrossel: os 4 cards viram uma faixa horizontal com snap,
               sem JS. .automatic-intro (o card com "Você ganhou mais...")
               fica de fora de propósito - é o texto de abertura da seção,
               não um item da lista. */
            .automatic-grid {
                display: flex;
                flex-wrap: nowrap;
                grid-template-columns: unset;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 16px;
                padding-bottom: 4px;
            }
            .automatic-grid::-webkit-scrollbar {
                display: none;
            }
            .section-title {
                font-size: 32px;
                margin-bottom: 50px;
            }
            .automatic-card {
                flex: 0 0 85%;
                scroll-snap-align: center;
                padding: 32px 24px;
            }
            .inconformado-section {
                padding: 60px 20px;
            }
            .inconformado-title {
                font-size: 36px;
            }
            .inconformado-traits {
                grid-template-columns: 1fr;
            }
        }

        /* ============ PAIN SECTION ============ */
        .pain-section {
            background: url('/Imagens/Fundo_claro.png') center/cover no-repeat;
            background-attachment: fixed;
            padding: clamp(60px, 15vw, 120px) clamp(1rem, 5%, 60px);
            position: relative;
            overflow: hidden;
        }

        .pain-section::before {
            content: '';
            position: absolute;
            top: -400px;
            left: -300px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(20px, 5vw, 40px);
            max-width: 850px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            /* Carrossel: os 4 pain-card viram uma faixa horizontal com snap. */
            .pain-grid {
                display: flex;
                flex-wrap: nowrap;
                grid-template-columns: unset;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 16px;
                padding-bottom: 4px;
            }
            .pain-grid::-webkit-scrollbar {
                display: none;
            }
            .pain-card {
                flex: 0 0 85%;
                scroll-snap-align: center;
            }
        }

        .pain-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(230, 232, 235, 0.3) 100%);
            border: 1px solid rgba(18, 33, 78, 0.08);
            padding: clamp(32px, 8vw, 48px) clamp(24px, 6vw, 40px);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .pain-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .pain-card:hover {
            transform: translateY(-16px);
            box-shadow: 0 20px 60px rgba(18, 33, 78, 0.12);
            border-color: rgba(203, 151, 53, 0.3);
        }

        .pain-card:hover::before {
            transform: scaleX(1);
        }

        .pain-card:hover::after {
            opacity: 1;
        }

        .pain-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .pain-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* ============ PROOF SECTION ============ */
        .proof-section {
            background-image: url('/Imagens/Fundo.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-color: var(--navy);
            color: white;
            padding: clamp(60px, 15vw, 100px) clamp(1rem, 5%, 60px);
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 3px solid var(--gold);
            border-bottom: 3px solid var(--gold);
        }

        .proof-section::before {
            content: '';
            position: absolute;
            top: -300px;
            right: -300px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
        }

        .proof-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .proof-number {
            font-size: clamp(48px, 15vw, 72px);
            font-weight: 900;
            color: var(--gold);
            margin-bottom: clamp(16px, 4vw, 20px);
            font-variant-numeric: tabular-nums;
            animation: countUp 2s ease-out forwards;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .proof-text {
            font-size: clamp(16px, 4vw, 20px);
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        .proof-text strong {
            color: var(--gold);
            font-weight: 700;
        }

        /* ============ TRIANGLE SECTION ============ */
        .triangle-section {
            background: white;
            padding: clamp(60px, 15vw, 120px) clamp(1rem, 5%, 60px);
            position: relative;
        }

        .triangle-section::after {
            content: '';
            position: absolute;
            bottom: -300px;
            right: -400px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
        }

        .triangle-wrapper {
            max-width: 900px;
            margin: 0 auto 100px;
            position: relative;
            z-index: 1;
        }

        .triangle-display {
            background: linear-gradient(135deg, rgba(120, 120, 120, 0.05) 0%, rgba(150, 150, 150, 0.03) 100%);
            backdrop-filter: blur(20px);
            padding: clamp(40px, 10vw, 60px);
            border-radius: 20px;
            border: 1px solid rgba(120, 120, 120, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: clamp(300px, 50vw, 400px);
        }

        .triangle-svg-large {
            width: 100%;
            max-width: 350px;
            height: auto;
            filter: drop-shadow(0 20px 50px rgba(203, 151, 53, 0.2));
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: clamp(20px, 5vw, 32px);
            position: relative;
            z-index: 1;
        }

        .pillar-card {
            background: linear-gradient(135deg, rgba(120, 120, 120, 0.08) 0%, rgba(150, 150, 150, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(120, 120, 120, 0.2);
            padding: clamp(28px, 7vw, 40px) clamp(20px, 5vw, 32px);
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.4s;
        }

        .pillar-card:hover {
            transform: translateY(-16px);
            background: linear-gradient(135deg, rgba(203, 151, 53, 0.12) 0%, rgba(230, 232, 235, 0.08) 100%);
            border-color: rgba(203, 151, 53, 0.4);
            box-shadow: 0 20px 50px rgba(203, 151, 53, 0.15);
        }

        .pillar-card:hover::before {
            transform: scaleX(1);
        }

        .pillar-icon {
            font-size: clamp(36px, 8vw, 48px);
            margin-bottom: clamp(16px, 4vw, 20px);
            display: inline-block;
            animation: bounce 2s ease-in-out infinite;
        }

        .pillar-card:nth-child(2) .pillar-icon {
            animation-delay: 0.2s;
        }

        .pillar-card:nth-child(3) .pillar-icon {
            animation-delay: 0.4s;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .pillar-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .pillar-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============ ECOSYSTEM SECTION ============ */
        .ecosystem-section {
            background: url('/Imagens/Fundo_claro.png') center/cover no-repeat;
            background-attachment: fixed;
            padding: clamp(60px, 15vw, 120px) clamp(1rem, 5%, 60px);
            position: relative;
            overflow: hidden;
        }

        .ecosystem-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(20px, 5vw, 40px);
            max-width: 850px;
            margin: clamp(40px, 10vw, 80px) auto 0;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .ecosystem-grid {
                grid-template-columns: 1fr;
            }
        }

        .eco-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(230, 232, 235, 0.3) 100%);
            border: 1px solid rgba(18, 33, 78, 0.08);
            padding: clamp(32px, 8vw, 48px) clamp(24px, 6vw, 40px);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .eco-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .eco-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .eco-card:hover {
            transform: translateY(-16px);
            box-shadow: 0 20px 60px rgba(18, 33, 78, 0.12);
            border-color: rgba(203, 151, 53, 0.3);
        }

        .eco-card:hover::before {
            transform: scaleX(1);
        }

        .eco-card:hover::after {
            opacity: 1;
        }

        .eco-number {
            font-size: clamp(36px, 8vw, 48px);
            font-weight: 900;
            color: var(--gold);
            margin-bottom: clamp(12px, 3vw, 16px);
            font-variant-numeric: tabular-nums;
        }

        .eco-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .eco-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .eco-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(203, 151, 53, 0.15) 0%, rgba(203, 151, 53, 0.08) 100%);
            color: var(--navy);
            font-size: 12px;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
            border: 1px solid rgba(203, 151, 53, 0.2);
            transition: all 0.3s;
        }

        .eco-tag:hover {
            background: linear-gradient(135deg, rgba(203, 151, 53, 0.2) 0%, rgba(203, 151, 53, 0.12) 100%);
            border-color: rgba(203, 151, 53, 0.4);
        }

        /* ============ FINAL CTA SECTION ============ */
        .final-cta-section {
            background-image: url('/Imagens/Fundo.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-color: var(--navy);
            color: white;
            padding: clamp(60px, 15vw, 140px) clamp(1rem, 5%, 60px);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta-section::before {
            content: '';
            position: absolute;
            top: -300px;
            left: -300px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
        }

        .final-cta-section::after {
            content: '';
            position: absolute;
            bottom: -400px;
            right: -400px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
        }

        .final-cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta-section h2 {
            font-size: clamp(32px, 8vw, 56px);
            font-weight: 900;
            margin-bottom: clamp(20px, 4vw, 24px);
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .final-cta-section h2 em {
            color: var(--gold);
            font-style: normal;
            display: block;
        }

        .final-cta-section p {
            font-size: clamp(15px, 4vw, 18px);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: clamp(32px, 8vw, 48px);
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: clamp(12px, 4vw, 20px);
            justify-content: center;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
            }
        }

        /* ============ FREE PRODUCT SECTION ============ */
        .free-product-section {
            background: white;
            padding: clamp(60px, 15vw, 100px) clamp(1rem, 5%, 60px);
            position: relative;
            overflow: hidden;
        }

        .free-product-section::before {
            content: '';
            position: absolute;
            top: -400px;
            left: -300px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(203, 151, 53, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
        }

        .free-product-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 660px;
            height: 660px;
            background: var(--navy);
            clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%);
            opacity: 0.04;
            pointer-events: none;
            z-index: 0;
        }

        /* ============ FOOTER ============ */
        .footer {
            background: white;
            color: #666;
            padding: 20px clamp(1rem, 5%, 60px);
            font-size: clamp(12px, 3vw, 14px);
            border-top: 1px solid rgba(203, 151, 53, 0.2);
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .footer-tagline {
            color: #040a1a;
            font-weight: 600;
            text-align: right;
            margin: 0;
            white-space: nowrap;
        }

        .footer-copy {
            text-align: center;
            margin: 0;
            color: #666;
        }

        .footer-links {
            text-align: center;
            display: flex;
            gap: clamp(16px, 4vw, 24px);
            justify-content: center;
            flex: 1;
        }

        .footer p {
            margin-bottom: 8px;
        }

        .footer a {
            color: #9B6B3C;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 600;
        }

        .footer a:hover {
            color: #040a1a;
        }

        .footer-disclaimer {
            font-size: 11px;
            color: #999;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(203, 151, 53, 0.1);
            line-height: 1.6;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .footer-tagline {
                text-align: center;
                white-space: normal;
                order: -1;
            }
            .footer-links {
                flex-direction: row;
                width: 100%;
            }
        }

        /* ============ SCROLL ANIMATIONS ============ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ FAQ SECTION ============ */
        .faq-section {
            background: white;
            padding: clamp(60px, 15vw, 120px) clamp(1rem, 5%, 60px);
            position: relative;
        }
        .faq-list {
            max-width: 720px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--gray);
        }
        .faq-item summary {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 0;
            font-weight: 500;
            color: var(--navy);
            cursor: pointer;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: '+';
            font-size: 1.5rem;
            line-height: 1;
            color: var(--gold);
            flex-shrink: 0;
        }
        .faq-item[open] summary::after {
            content: '\2212';
        }
        .faq-item p {
            text-indent: 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            padding-bottom: 20px;
        }
