/* ===== 
ARIÁVEIS E ESTILOS GLOBAIS ===== */
        :root {
            --black: #000000;
            --dark-gray: #0a0a0a;
            --gold: #d4af37;
            --light-gold: #f1e5b9;
            --dark-gold: #b8860b;
            --white: #ffffff;
            --off-white: #f8f8f8;
            --success: #10b981;
            --error: #ef4444;
            --blue-primary: #0088ff;
            --blue-secondary: #00ccaa;
            --dark-blue: #0a0f1d;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --padding-secao: clamp(24px, 4vw, 56px);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ===== ESTILOS DA PRIMEIRA SEÇÃO (CAPITAL WEALTH) ===== */
        .capital-wealth-section {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            background: 
                radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 25%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 25%),
                linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
        }

        .capital-wealth-section h1, 
        .capital-wealth-section h2, 
        .capital-wealth-section h3, 
        .capital-wealth-section h4 {
            font-family: 'Cinzel', 'Playfair Display', serif;
            font-weight: 700;
        }

        /* Header premium */
        .capital-wealth-section .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.2rem 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            transition: var(--transition);
        }

        .capital-wealth-section .header.scrolled {
            padding: 0.8rem 0;
            background: rgba(0, 0, 0, 0.97);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }

        .capital-wealth-section .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .capital-wealth-section .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .capital-wealth-section .logo {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
            position: relative;
        }

        .capital-wealth-section .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .capital-wealth-section .logo:hover::after {
            transform: scaleX(1);
        }

        .capital-wealth-section .logo:hover {
            transform: translateY(-2px);
        }

        .capital-wealth-section .logo i {
            color: var(--gold);
            transition: var(--transition);
            font-size: 1.8rem;
        }

        .capital-wealth-section .logo:hover i {
            transform: scale(1.1);
            color: var(--light-gold);
        }

        .capital-wealth-section .logo span {
            color: var(--gold);
            font-weight: 800;
        }

        .capital-wealth-section .nav-links {
            display: flex;
            gap: 2.5rem;
        }

        .capital-wealth-section .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 5px;
            transition: var(--transition);
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
        }

        .capital-wealth-section .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s ease;
        }

        .capital-wealth-section .nav-links a:hover {
            color: var(--white);
        }

        .capital-wealth-section .nav-links a:hover::after {
            width: 100%;
        }

        .capital-wealth-section .nav-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .capital-wealth-section .cta-button {
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--black);
            border: none;
            padding: 1rem 2.2rem;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            border-radius: 2px;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
            font-family: 'Inter', sans-serif;
        }

        .capital-wealth-section .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        .capital-wealth-section .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s;
        }

        .capital-wealth-section .cta-button:hover::before {
            left: 100%;
        }

        /* Hero Section premium */
        .capital-wealth-section .hero {
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            border-radius: 0;
            margin-top: 80px;
            background: rgba(10, 10, 10, 0.7);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            min-height: 90vh;
            backdrop-filter: blur(10px);
        }

        .capital-wealth-section .hero-content {
            display: flex;
            align-items: center;
            width: 100%;
            z-index: 2;
            position: relative;
        }

        .capital-wealth-section .hero-text-container {
            flex: 1;
            padding: 6rem 4rem;
            max-width: 700px;
        }

        .capital-wealth-section .hero-subtitle {
            font-size: 1.1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            position: relative;
            display: inline-block;
            padding-left: 60px;
        }

        .capital-wealth-section .hero-subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .capital-wealth-section .hero-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2.5rem;
            color: var(--white);
            text-shadow: 0 2px 15px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }

        .capital-wealth-section .hero-title span {
            color: var(--gold);
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .capital-wealth-section .hero-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3.5rem;
            max-width: 550px;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .capital-wealth-section .hero-buttons {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .capital-wealth-section .btn {
            padding: 1.3rem 3rem;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            border-radius: 2px;
            border: none;
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
        }

        .capital-wealth-section .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--black);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

        .capital-wealth-section .btn-secondary {
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
            position: relative;
            z-index: 1;
        }

        .capital-wealth-section .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--gold);
            transition: var(--transition);
            z-index: -1;
        }

        .capital-wealth-section .btn-secondary:hover {
            color: var(--black);
        }

        .capital-wealth-section .btn-secondary:hover::before {
            width: 100%;
        }

        .capital-wealth-section .btn:hover {
            transform: translateY(-3px);
        }

        .capital-wealth-section .btn-primary:hover {
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
        }

        /* Hero Visuals premium */
        .capital-wealth-section .hero-visuals {
            flex: 1;
            position: relative;
            height: 100%;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
        }

        .capital-wealth-section .market-stats {
            background: rgba(20, 20, 20, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 0;
            padding: 2.5rem;
            width: 100%;
            max-width: 500px;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .capital-wealth-section .market-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            z-index: -1;
        }

        .capital-wealth-section .market-stats:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
            border-color: rgba(212, 175, 55, 0.2);
        }

        .capital-wealth-section .stats-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .capital-wealth-section .stats-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 1px;
        }

        .capital-wealth-section .stats-refresh {
            background: transparent;
            border: none;
            color: var(--gold);
            cursor: pointer;
            font-size: 1.1rem;
            transition: transform 0.5s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .capital-wealth-section .stats-refresh:hover {
            transform: rotate(180deg);
            background: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.5);
        }

        .capital-wealth-section .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .capital-wealth-section .stat-card {
            background: rgba(30, 30, 30, 0.6);
            border-radius: 0;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .capital-wealth-section .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .capital-wealth-section .stat-card:hover {
            background: rgba(40, 40, 40, 0.8);
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.2);
        }

        .capital-wealth-section .stat-card:hover::before {
            opacity: 1;
        }

        .capital-wealth-section .stat-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .capital-wealth-section .stat-icon {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .capital-wealth-section .stat-card:hover .stat-icon {
            background: rgba(212, 175, 55, 0.2);
            transform: scale(1.1);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .capital-wealth-section .stat-icon i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        .capital-wealth-section .stat-label {
            font-size: 0.95rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.5px;
        }

        .capital-wealth-section .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
            font-family: 'Cinzel', serif;
            letter-spacing: 1px;
        }

        .capital-wealth-section .stat-change {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .capital-wealth-section .positive {
            color: var(--success);
        }

        .capital-wealth-section .negative {
            color: var(--error);
        }

        /* Arrow Chart premium */
        .capital-wealth-section .market-chart {
            margin-top: 2.5rem;
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .capital-wealth-section .chart-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-rows: repeat(5, 1fr);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .capital-wealth-section .chart-grid-line {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .capital-wealth-section .arrow-chart-container {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 0 15px;
        }

        .capital-wealth-section .arrow-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            position: relative;
            margin: 0 8px;
        }

        .capital-wealth-section .arrow {
            width: 22px;
            background: linear-gradient(to top, var(--success), #2ecc71);
            border-radius: 2px 2px 0 0;
            position: relative;
            transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 -3px 15px rgba(46, 204, 113, 0.3);
            max-height: 90%;
        }

        .capital-wealth-section .arrow::after {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 11px solid transparent;
            border-right: 11px solid transparent;
            border-bottom: 11px solid var(--success);
        }

        .capital-wealth-section .arrow-label {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: 0.85rem;
            opacity: 0.7;
            letter-spacing: 0.5px;
        }

        .capital-wealth-section .arrow-value {
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-weight: 600;
            font-size: 0.95rem;
            opacity: 0;
            transition: var(--transition);
            background: rgba(0, 0, 0, 0.7);
            padding: 5px 10px;
            border-radius: 2px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .capital-wealth-section .arrow-column:hover .arrow-value {
            opacity: 1;
        }

        .capital-wealth-section .chart-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        /* Background Elements premium */
        .capital-wealth-section .background-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .capital-wealth-section .element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.03;
            filter: blur(70px);
            animation: floatElement 20s infinite ease-in-out;
        }

        .capital-wealth-section .element-1 {
            width: 600px;
            height: 600px;
            background: var(--gold);
            top: -250px;
            right: -150px;
            animation-delay: 0s;
        }

        .capital-wealth-section .element-2 {
            width: 400px;
            height: 400px;
            background: var(--gold);
            bottom: -150px;
            left: -80px;
            animation-delay: 7s;
        }

        .capital-wealth-section .element-3 {
            width: 300px;
            height: 300px;
            background: var(--gold);
            top: 40%;
            left: 30%;
            animation-delay: 14s;
        }

        @keyframes floatElement {
            0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
            25% { transform: translateY(-30px) translateX(20px) rotate(5deg); }
            50% { transform: translateY(15px) translateX(-20px) rotate(-5deg); }
            75% { transform: translateY(-15px) translateX(15px) rotate(3deg); }
        }

        /* Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .capital-wealth-section .floating {
            animation: float 8s ease-in-out infinite;
        }

        /* Ticker de ações premium */
        .stock-ticker {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            padding: 15px 0;
            overflow: hidden;
            z-index: 999;
            backdrop-filter: blur(15px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-family: 'Inter', sans-serif;
        }

        .ticker-content {
            display: flex;
            animation: tickerAnimation 35s linear infinite;
            white-space: nowrap;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            margin-right: 50px;
            font-size: 0.95rem;
            padding: 8px 15px;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ticker-symbol {
            font-weight: 600;
            margin-right: 10px;
            color: var(--gold);
            letter-spacing: 0.5px;
        }

        .ticker-price {
            margin-right: 10px;
            font-weight: 500;
        }

        .ticker-change {
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .ticker-change.positive {
            color: var(--success);
        }

        .ticker-change.negative {
            color: var(--error);
        }

        @keyframes tickerAnimation {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* Efeito de partículas douradas */
        .gold-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat 15s linear infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) rotate(720deg);
                opacity: 0;
            }
        }

        /* Responsividade melhorada */
        @media (max-width: 1200px) {
            .capital-wealth-section .hero-content {
                flex-direction: column;
            }
            
            .capital-wealth-section .hero-text-container {
                padding: 5rem 3rem;
                max-width: 100%;
                text-align: center;
            }
            
            .capital-wealth-section .hero-text {
                margin-left: auto;
                margin-right: auto;
            }
            
            .capital-wealth-section .hero-buttons {
                justify-content: center;
            }
            
            .capital-wealth-section .hero-visuals {
                width: 100%;
                padding: 0 3rem 5rem;
                min-height: auto;
            }
            
            .capital-wealth-section .market-stats {
                max-width: 800px;
            }
        }

        @media (max-width: 992px) {
            .capital-wealth-section .hero-title {
                font-size: 3.2rem;
            }
            
            .capital-wealth-section .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .capital-wealth-section .hero-title {
                font-size: 2.8rem;
            }
            
            .capital-wealth-section .hero-text {
                font-size: 1.1rem;
            }
            
            .capital-wealth-section .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .capital-wealth-section .nav-links {
                display: none;
            }

            .capital-wealth-section .hero-subtitle {
                padding-left: 0;
            }
            
            .capital-wealth-section .hero-subtitle::before {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .capital-wealth-section .hero-title {
                font-size: 2.3rem;
            }
            
            .capital-wealth-section .hero-subtitle {
                font-size: 1rem;
                letter-spacing: 3px;
            }
            
            .capital-wealth-section .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .capital-wealth-section .btn {
                width: 100%;
                text-align: center;
            }

            .capital-wealth-section .hero-text-container {
                padding: 4rem 2rem;
            }
        }

        /* ===== ESTILOS DA SEGUNDA SEÇÃO (INVESTIMENTOS BRASIL) ===== */
        .invest-brasil-section {
            position: relative;
            min-height: 100vh;
            padding: 80px 40px;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            font-family: 'Montserrat', 'Segoe UI', sans-serif;
            /* Efeito Parallax */
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }

        /* SVG de fundo com parallax */
        .invest-brasil-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" fill="none"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230088ff;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%2300ccaa;stop-opacity:0.05" /></linearGradient></defs><path d="M100,100 Q300,50 500,150 T900,100 L900,900 Q700,950 500,850 T100,900 Z" fill="url(%23grad1)"/><circle cx="200" cy="300" r="50" fill="%230088ff" opacity="0.1"/><circle cx="800" cy="700" r="80" fill="%2300ccaa" opacity="0.08"/><path d="M50,400 Q250,350 450,450 T850,400" stroke="%230088ff" stroke-width="2" opacity="0.15" fill="none"/><path d="M150,600 Q350,550 550,650 T950,600" stroke="%2300ccaa" stroke-width="2" opacity="0.12" fill="none"/></svg>');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            z-index: 1;
            opacity: 0.6;
            animation: parallaxFloat 20s ease-in-out infinite;
        }

        @keyframes parallaxFloat {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); 
                opacity: 0.6;
            }
            25% { 
                transform: translateY(-20px) translateX(10px) rotate(1deg) scale(1.02); 
                opacity: 0.7;
            }
            50% { 
                transform: translateY(10px) translateX(-15px) rotate(-1deg) scale(0.98); 
                opacity: 0.5;
            }
            75% { 
                transform: translateY(-15px) translateX(5px) rotate(0.5deg) scale(1.01); 
                opacity: 0.8;
            }
        }

        /* Efeito de scroll parallax adicional */
        .invest-brasil-section .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: linear-gradient(135deg, rgba(0, 136, 255, 0.05) 0%, rgba(0, 204, 170, 0.03) 100%);
            z-index: 2;
            transform: translateY(0);
            transition: transform 0.1s ease-out;
        }

        .invest-brasil-section .content-wrapper {
            display: flex;
            flex-direction: row;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 20;
        }

        .invest-brasil-section .text-content {
            width: 60%;
            padding: 40px;
            background: rgba(10, 20, 40, 0.9);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 150, 255, 0.3);
            position: relative;
            overflow: hidden;
            order: 1;
            z-index: 25;
        }

        .invest-brasil-section .text-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--blue-primary), var(--blue-secondary));
        }

        .invest-brasil-section .svg-container {
            width: 40%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            order: 2;
            z-index: 15;
            position: relative;
        }

        .invest-brasil-section .svg-container svg {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 0 15px rgba(0, 150, 255, 0.5));
        }

        .invest-brasil-section .svg-container path {
            fill: var(--blue-primary);
            stroke: var(--blue-secondary);
            stroke-width: 1.5;
            transition: all 0.4s ease;
        }

        .invest-brasil-section .svg-container path:hover {
            fill: var(--blue-secondary);
            filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.8));
        }

        .invest-brasil-section h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            background: linear-gradient(90deg, var(--blue-secondary), var(--blue-primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .invest-brasil-section h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--blue-primary), var(--blue-secondary));
            border-radius: 2px;
        }

        .invest-brasil-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #e0e0ff;
        }

        .invest-brasil-section .highlight {
            color: var(--blue-secondary);
            font-weight: 600;
        }

        .invest-brasil-section .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 40px 0;
        }

        .invest-brasil-section .benefit-card {
            background: rgba(0, 50, 100, 0.4);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(0, 150, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .invest-brasil-section .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 100, 255, 0.3);
            background: rgba(0, 60, 120, 0.5);
        }

        .invest-brasil-section .benefit-card i {
            font-size: 2rem;
            color: var(--blue-primary);
            margin-bottom: 15px;
        }

        .invest-brasil-section .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--blue-secondary);
        }

        .invest-brasil-section .stats-container {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .invest-brasil-section .stat-item {
            text-align: center;
            padding: 15px;
            background: rgba(0, 80, 160, 0.3);
            border-radius: 12px;
            width: 23%;
            min-width: 150px;
            margin: 10px 0;
        }

        .invest-brasil-section .stat-item .number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--blue-secondary);
            margin-bottom: 5px;
        }

        .invest-brasil-section .stat-item .label {
            font-size: 0.9rem;
            color: #a0c8ff;
        }

        .invest-brasil-section .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(90deg, var(--blue-primary), var(--blue-secondary));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 150, 255, 0.4);
            border: none;
            cursor: pointer;
        }

        .invest-brasil-section .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 150, 255, 0.6);
            background: linear-gradient(90deg, #00aaff, #00ddbb);
        }

        .invest-brasil-section .pulse {
            animation: pulseAnimation 2s infinite;
        }

        @keyframes pulseAnimation {
            0% { box-shadow: 0 0 0 0 rgba(0, 150, 255, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(0, 150, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 150, 255, 0); }
        }

        @media (max-width: 992px) {
            .invest-brasil-section .content-wrapper {
                flex-direction: column;
            }
            
            .invest-brasil-section .text-content, 
            .invest-brasil-section .svg-container {
                width: 100%;
            }
            
            .invest-brasil-section .svg-container {
                margin-bottom: 40px;
            }
            
            .invest-brasil-section .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .invest-brasil-section .stats-container {
                flex-direction: column;
                align-items: center;
            }
            
            .invest-brasil-section .stat-item {
                width: 80%;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .invest-brasil-section {
                padding: 40px 20px;
            }
            
            .invest-brasil-section .text-content {
                padding: 25px;
            }
            
            .invest-brasil-section h1 {
                font-size: 2.2rem;
            }
            
            .invest-brasil-section .stat-item {
                width: 100%;
            }
        }

        /* ===== ESTILOS DA TERCEIRA SEÇÃO (COMO TRABALHAMOS) ===== */
        .sessao-3 {
            display: flex;
            flex-direction: row-reverse; /* INVERTE A ORDEM: vídeo à direita, texto à esquerda */
            width: 100%;
            min-height: 85vh;
            position: relative;
            overflow: hidden;
            padding: 2rem var(--padding-secao);
            gap: 2rem;
            background-color: var(--black);
        }

        .lado-video {
            flex: 1.8; /* Um pouco maior que o conteúdo */
            position: relative;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
            overflow: hidden;
            border-radius: 12px;
            background-color: var(--black);
        }

        .lado-video::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(11,34,64,0.25));
            pointer-events: none;
            z-index: 1;
        }

        .video-hero {
            width: 100%;
            height: 100%;
            object-fit: contain; /* mantém vídeo inteiro visível */
            object-position: center center;
            display: block;
            position: relative;
            z-index: 0;
        }

        .lado-conteudo {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.5rem;
            padding-left: 1rem;
        }

        .sessao-3 h2 {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 700;
            letter-spacing: 0.05em;
            color: var(--gold);
            margin-bottom: 0.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s var(--transition),
                transform 0.6s var(--transition);
        }

        .visivel h2 {
            opacity: 1;
            transform: translateY(0);
        }

        .intro {
            font-size: clamp(1rem, 1.25vw, 1.125rem);
            font-weight: 300;
            max-width: 38ch;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s var(--transition) 0.1s,
                transform 0.6s var(--transition) 0.1s;
            color: var(--white);
        }

        .visivel .intro {
            opacity: 0.9;
            transform: translateY(0);
        }

        .pilares {
            list-style: none;
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .pilar {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            opacity: 0;
            transform: translateY(20px);
        }

        .visivel .pilar {
            opacity: 1;
            transform: translateY(0);
        }

        .visivel .pilar:nth-child(1) {
            transition: opacity 0.6s var(--transition) 0.2s,
                transform 0.6s var(--transition) 0.2s;
        }

        .visivel .pilar:nth-child(2) {
            transition: opacity 0.6s var(--transition) 0.3s,
                transform 0.6s var(--transition) 0.3s;
        }

        .visivel .pilar:nth-child(3) {
            transition: opacity 0.6s var(--transition) 0.4s,
                transform 0.6s var(--transition) 0.4s;
        }

        .pilar svg {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            stroke: var(--gold);
            stroke-width: 2;
            fill: none;
        }

        .pilar-conteudo h3 {
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
            color: var(--gold);
        }

        .pilar-conteudo p {
            font-size: 0.95rem;
            font-weight: 300;
            opacity: 0.8;
        }

        .cta {
            display: inline-block;
            padding: 0.9rem 1.25rem;
            background: var(--gold);
            color: var(--black);
            font-weight: 500;
            text-decoration: none;
            border-radius: 12px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            opacity: 0;
            transform: translateY(10px);
        }

        .visivel .cta {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s var(--transition) 0.5s,
                transform 0.6s var(--transition) 0.5s,
                box-shadow 0.2s ease, transform 0.2s ease;
        }

        .cta:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
        }

        .cta:focus {
            outline: 3px solid var(--white);
            outline-offset: 3px;
        }

        @media (max-width: 1024px) {
            .sessao-3 {
                flex-direction: column;
                min-height: auto;
                padding: 1.5rem var(--padding-secao);
                gap: 1.5rem;
            }

            .lado-video {
                flex: none;
                width: 100%;
                height: 45vh;
                clip-path: none;
                border-radius: 8px;
            }

            .lado-video::after {
                background: linear-gradient(0deg, rgba(0,0,0,0.5), rgba(11,34,64,0));
            }

            .lado-conteudo {
                flex: none;
                width: 100%;
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .sessao-3 {
                flex-direction: column;
                min-height: auto;
            }

            .lado-video {
                height: 45vh;
                clip-path: none;
            }

            .lado-video::after {
                background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(11, 34, 64, 0));
            }

            .lado-conteudo {
                padding: 2rem var(--padding-secao);
            }

            .intro {
                max-width: 100%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .video-hero {
                animation: none;
            }

            h2,
            .intro,
            .pilar,
            .cta {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }

        /* ===== ESTILOS DA QUARTA SEÇÃO (VALORES ETERNOS) ===== */
       
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.1) 0%, transparent 40%),
                        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
            z-index: -1;
        }

        .narrative-container {
            max-width: 1400px;
            width: 100%;
            position: relative;
            padding: 5rem 2rem;
        }

        .narrative-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            padding-bottom: 2rem;
        }

        .narrative-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, #8B0000, #D4AF37, transparent);
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: 3.2rem;
            font-weight: 600;
            letter-spacing: 2px;
            background: linear-gradient(to right, #D4AF37, #f5e8b9, #D4AF37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '✦';
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            color: #D4AF37;
            font-size: 1.8rem;
        }

        .section-title::before {
            content: '✦';
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            color: #D4AF37;
            font-size: 1.8rem;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #ccc;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-style: italic;
            font-weight: 300;
        }

        .narrative-path {
            position: absolute;
            top: 200px;
            left: 0;
            width: 100%;
            height: calc(100% - 300px);
            display: flex;
            justify-content: center;
            pointer-events: none;
            z-index: 0;
        }

        .path-line {
            position: absolute;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, #D4AF37 10%, #D4AF37 90%, transparent 100%);
            opacity: 0.1;
        }

        .valor-cards {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            position: relative;
            z-index: 2;
        }

        .valor-card {
            display: flex;
            max-width: 900px;
            margin: 0 auto;
            background: rgba(15, 15, 15, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            position: relative;
        }

        .valor-card:nth-child(even) {
            flex-direction: row-reverse;
            margin-left: auto;
        }

        .valor-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 15px 50px rgba(139, 0, 0, 0.4), 
                        0 0 0 1px rgba(212, 175, 55, 0.2);
        }

        .card-icon-container {
            flex: 0 0 40%;
            position: relative;
            overflow: hidden;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(10, 10, 10, 0.95);
        }

        .icon-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q40,5 50,30 T80,20" fill="none" stroke="#D4AF37" stroke-width="0.5"/></svg>');
        }

        .card-icon {
            font-size: 6rem;
            color: rgba(212, 175, 55, 0.15);
            transition: all 0.6s ease;
            z-index: 2;
        }

        .valor-card:hover .card-icon {
            color: #D4AF37;
            transform: scale(1.1);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
        }

        .card-content {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 600;
            color: #D4AF37;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            letter-spacing: 1px;
        }

        .card-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 2px;
            background: #8B0000;
            transition: all 0.4s ease;
        }

        .valor-card:hover .card-title::after {
            width: 120px;
            background: linear-gradient(to right, #8B0000, #D4AF37);
        }

        .card-desc {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #e0e0e0;
            font-weight: 300;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .narrative-quote {
            font-style: italic;
            position: relative;
            padding-left: 1.5rem;
            color: #aaa;
            border-left: 2px solid rgba(212, 175, 55, 0.3);
            margin-top: 1rem;
        }

        .card-number {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
        }

        .valor-card:hover .card-number {
            color: rgba(212, 175, 55, 0.6);
        }

        .valor-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #8B0000, #000, #000, #D4AF37);
            z-index: -1;
            border-radius: 18px;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

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

        .narrative-footer {
            text-align: center;
            margin-top: 5rem;
            padding-top: 3rem;
            position: relative;
        }

        .narrative-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, #8B0000, #D4AF37, transparent);
        }

        .footer-quote {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: #D4AF37;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            font-style: italic;
            position: relative;
        }

        .footer-quote::before,
        .footer-quote::after {
            content: '"';
            color: rgba(212, 175, 55, 0.4);
            font-size: 3rem;
            position: absolute;
        }

        .footer-quote::before {
            top: -20px;
            left: -30px;
        }

        .footer-quote::after {
            bottom: -40px;
            right: -30px;
        }

        .footer-author {
            color: #aaa;
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ===== ESTILOS DA QUINTA SEÇÃO (CIÊNCIA DA EXCELÊNCIA) ===== */
        .science-proof {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 6rem 2rem;
            position: relative;
        }

        .science-proof::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, #8B0000, #D4AF37, transparent);
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .science-proof-content {
            background: rgba(15, 15, 15, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 16px;
            padding: 5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
            transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .science-proof-content:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 25px 70px rgba(139, 0, 0, 0.4), 
                        0 0 0 1px rgba(212, 175, 55, 0.2);
        }

        .science-proof-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q40,5 50,30 T80,20" fill="none" stroke="#D4AF37" stroke-width="0.2" opacity="0.05"/></svg>');
            z-index: 0;
        }

        .science-proof-content h2 {
            font-family: 'Cinzel', serif;
            font-size: 3.2rem;
            font-weight: 600;
            letter-spacing: 2px;
            background: linear-gradient(to right, #D4AF37, #f5e8b9, #D4AF37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .large-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #e0e0e0;
            max-width: 800px;
            margin: 0 auto 3rem;
            position: relative;
            z-index: 2;
            font-weight: 300;
        }

        .science-proof-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
            color: #D4AF37;
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            font-weight: 500;
            text-decoration: none;
            padding: 1.3rem 2.5rem;
            border-radius: 50px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }

        .science-proof-btn i {
            margin-right: 12px;
            font-size: 1.4rem;
            transition: all 0.4s ease;
        }

        .science-proof-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .science-proof-btn:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.6);
            color: #f5e8b9;
            box-shadow: 0 10px 25px rgba(139, 0, 0, 0.4),
                        0 0 20px rgba(212, 175, 55, 0.2);
        }

        .science-proof-btn:hover::before {
            opacity: 1;
        }

        .science-proof-btn:hover i {
            color: #8B0000;
            transform: scale(1.2);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
        }

        .molecule-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .atom {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(212, 175, 55, 0.5);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
        }

        .electron {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(139, 0, 0, 0.8);
            border-radius: 50%;
            animation: orbit 8s linear infinite;
        }

        @keyframes orbit {
            0% { transform: rotate(0deg) translateX(30px) rotate(0deg); }
            100% { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease;
        }

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

        /* ===== ESTILOS DA SEXTA SEÇÃO (CADASTRO) ===== */
        :root {
            --gold: #D4AF37;
            --gold-light: #f0d27d;
            --red-accent: #c1272d;
            --white: #ffffff;
            --black-matte: #0a0a0a;
            --light-bg: #f9f9f9;
            --dark-text: #333333;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .final-section {
            background-color: var(--white);
            color: var(--dark-text);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .final-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .section-tag {
            color: var(--red-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            font-weight: 600;
            display: inline-block;
        }

        .final-section .section-title {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: var(--dark-text);
            position: relative;
            line-height: 1.2;
        }

        .final-section .section-title span {
            background: linear-gradient(120deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .final-section .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
        }

        .section-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 700px;
            color: var(--dark-text);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, var(--gold), var(--gold-light));
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            padding: 18px 40px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
            color: var(--white);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition);
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
            width: 100%;
        }

        .benefit-card {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--gold);
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .benefit-card:hover .benefit-icon {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--white);
            transform: scale(1.1);
        }

        .benefit-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-text);
            font-weight: 600;
        }

        .benefit-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
        }

        .red-accent {
            color: var(--red-accent);
            font-weight: 600;
        }

        /* ===== MEDIA QUERIES ===== */
        @media (max-width: 900px) {
            .valor-card,
            .valor-card:nth-child(even) {
                flex-direction: column;
                max-width: 600px;
            }
            
            .card-icon-container {
                min-height: 200px;
            }
            
            .section-title {
                font-size: 2.4rem;
            }
            
            .section-title::before,
            .section-title::after {
                display: none;
            }
            
            .science-proof-content {
                padding: 3rem;
            }
            
            .science-proof-content h2 {
                font-size: 2.4rem;
            }
            
            .large-text {
                font-size: 1.1rem;
            }
            
            .final-section .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 600px) {
            .section-title {
                font-size: 2rem;
            }
            
            .card-content {
                padding: 2rem;
            }
            
            .card-title {
                font-size: 1.8rem;
            }
            
            .card-desc {
                font-size: 1rem;
            }
            
            .footer-quote {
                font-size: 1.4rem;
            }
            
            .science-proof-content {
                padding: 2rem 1.5rem;
            }
            
            .science-proof-content h2 {
                font-size: 1.8rem;
            }
            
            .science-proof-btn {
                font-size: 1rem;
                padding: 1rem 1.8rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }

        /* Animações de entrada */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .final-container > * {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .final-container > *:nth-child(1) { animation-delay: 0.1s; }
        .final-container > *:nth-child(2) { animation-delay: 0.3s; }
        .final-container > *:nth-child(3) { animation-delay: 0.5s; }
        .benefits-grid { animation-delay: 0.7s; }
        .cta-button { animation-delay: 1s; }

/* ===== VARIÁVEIS E ESTILOS GLOBAIS ===== */
        :root {
            --black: #000000;
            --dark-gray: #0a0a0a;
            --gold: #d4af37;
            --light-gold: #f1e5b9;
            --dark-gold: #b8860b;
            --white: #ffffff;
            --off-white: #f8f8f8;
            --success: #10b981;
            --error: #ef4444;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ===== SEÇÃO DE CREDIBILIDADE ===== */
        .credibility-section {
            background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .credibility-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
            z-index: 1;
        }

        .credibility-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .credibility-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .credibility-header h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .credibility-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
        }

        .credibility-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .credibility-card {
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .credibility-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .credibility-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

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

        .credibility-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.4s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .credibility-card:hover .credibility-icon {
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            transform: scale(1.1);
            border-color: rgba(212, 175, 55, 0.5);
        }

        .credibility-icon i {
            font-size: 2rem;
            color: var(--gold);
            transition: all 0.4s ease;
        }

        .credibility-card:hover .credibility-icon i {
            color: var(--black);
        }

        .credibility-number {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .credibility-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* ===== CTAs MELHORADOS ===== */
        .cta-button-premium {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--black);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            padding: 20px 40px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button-premium:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
            color: var(--black);
        }

        .cta-button-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s;
        }

        .cta-button-premium:hover::before {
            left: 100%;
        }

        /* ===== DEPOIMENTOS ===== */
        .testimonials-section {
            background: rgba(10, 10, 10, 0.9);
            padding: 80px 20px;
            position: relative;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-header h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            font-weight: 600;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .author-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 768px) {
            .credibility-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .credibility-header h2,
            .testimonials-header h2 {
                font-size: 2rem;
            }
        }

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

/* === APPENDED FIXES === */

/* === JavaScript para efeito parallax na segunda seção === */
<script>
document.addEventListener('DOMContentLoaded', function() {
    const investSection = document.querySelector('.invest-brasil-section');
    const parallaxBg = document.querySelector('.invest-brasil-section::before');
    
    if (investSection) {
        window.addEventListener('scroll', function() {
            const scrolled = window.pageYOffset;
            const rate = scrolled * -0.5;
            
            // Aplica o efeito parallax ao SVG de fundo
            if (investSection.style) {
                investSection.style.transform = `translateY(${rate}px)`;
            }
        });
    }
});
</script>

/* === Ajustes solicitados === */

/* 1. Remover "Acesso Privilegiado" apenas no mobile */
@media (max-width: 768px) {
  .nav-actions .cta-button {
    display: none !important;
  }
}

/* 2. Fade-in global (leve) */
* {
  animation: fadeIn 0.6s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 3. Otimização de imagens e fontes */
img, video {
  max-width: 100%;
  height: auto;
}
.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
}

/* Botões adaptáveis */
.btn, .cta-button {
  min-width: 160px;
  padding: 0.8rem 1.2rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* 4. Correção para landscape em celulares */
@media screen and (max-height: 500px) and (orientation: landscape) {
  body { 
    padding: 0.5rem; 
    overflow-x: hidden;
  }
  header, .hero, .sessao-3 {
    padding: 0.5rem 1rem;
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons { 
    flex-direction: row; 
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-buttons .btn, 
  .hero-buttons .cta-button {
    flex: 1 1 45%;
    margin: 0.3rem;
  }
}


/* =============================================================
   FIX: Remover apenas o 5º card da seção de cards
   - Tenta primeiro escopos prováveis da "Saga Magnológica"
   - Depois cobre grupos que já existem no seu CSS (ex.: .valor-cards > .valor-card)
   - Por fim, aplica um fallback seguro para QUALQUER container "...-cards"
     com itens "...-card". Caso queira restringir só à "Saga Magnológica",
     mantenha apenas os seletores do topo (.saga-... / #saga-...).
   ============================================================= */

/* 1) Possíveis contêineres da seção "Saga Magnológica" */
.saga-magnologica .card:nth-child(5),
.saga-magnológica .card:nth-child(5),
#saga-magnologica .card:nth-child(5),
#saga-magnológica .card:nth-child(5),
.saga-magnologica [class$="card"]:nth-child(5),
.saga-magnológica [class$="card"]:nth-child(5),
#saga-magnologica [class$="card"]:nth-child(5),
#saga-magnológica [class$="card"]:nth-child(5) {
    display: none !important;
}

/* 2) Grupos que já existem no seu CSS */
.valor-cards > .valor-card:nth-child(5),
.valor-cards > .valor-card:nth-of-type(5) {
    display: none !important;
}

/* 3) Fallback genérico para qualquer lista de cards do tipo "...-cards" > "...-card" */
[class$="cards"] > [class$="card"]:nth-child(5),
[class$="cards"] > [class$="card"]:nth-of-type(5) {
    display: none !important;
}


/* Botão abaixo do gráfico */
.capital-wealth-section .chart-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.capital-wealth-section .chart-cta-container .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}



/* Ajuste para o botão abaixo do gráfico */
.capital-wealth-section .chart-cta-container {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.capital-wealth-section .chart-cta-container .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 10px 20px;
}
