:root {
    /* Paleta Premium Dark Dourada */
    --bg-dark: #07090E;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --text-main: #F8F9FA;
    --text-muted: #A0AAB5;
    --border: rgba(255, 255, 255, 0.08);
    
    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

html, body {
    overflow-x: hidden; /* Impede Scroll Horizontal */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: #000;
}

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

/* Quantum Background Effects */
#particles-js {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, #111827 0%, #000000 100%);
    z-index: -3;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.2);
    animation: quantum-twinkle 3s infinite alternate;
}

.italic {
    font-style: italic;
    font-weight: 600;
}

@keyframes quantum-twinkle {
    0% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.1); opacity: 0.9; }
    100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4); opacity: 1; }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
    white-space: nowrap;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--gold);
    color: #000;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 20px var(--gold-glow);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gold);
    border-radius: 100px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    white-space: nowrap;
    max-width: 95%;
    font-weight: 500;
}

.hero-text h1 {
    font-size: clamp(2rem, 6vw, 3.8rem);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.6rem);
    font-weight: 300;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    margin: 16px auto 32px;
    max-width: 90%;
    text-wrap: balance;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    margin: 0 auto 40px;
    max-width: 800px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-vsl-container {
    width: 100%;
    max-width: 900px; /* Preserva o visual no desktop */
    box-sizing: border-box;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.15);
    background: #000;
    position: relative;
}

.vimeo-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Mantém a proporção 16:9 perfeita */
    height: 0;
    overflow: hidden;
    width: 100%;
    background: #000;
}

.vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vsl-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.vsl-unmute-btn {
    background: var(--gold);
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 16px 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: pulse-vsl 1.5s infinite;
}

@keyframes pulse-vsl {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 45px rgba(212, 175, 55, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
}

.vsl-progress-container {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 15; /* Increased z-index to stay above iframe */
}

.vsl-progress-bar {
    height: 100%;
    width: 0%;
    background: #00E5FF;
    box-shadow: 0 0 10px #00E5FF, 0 0 20px #00E5FF;
    transition: width 0.3s ease-out;
}

.btn-glow {
    background: linear-gradient(45deg, #D4AF37, #F4D068, #D4AF37);
    background-size: 200% auto;
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    border: none;
    font-size: 1.2rem;
    padding: 20px 48px;
    animation: pulse-glow 2.5s infinite, gradient-shift 3s infinite linear;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-glow:hover {
    background: linear-gradient(45deg, #F4D068, #fff, #F4D068);
    background-size: 200% auto;
    color: #000;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 45px rgba(212, 175, 55, 0.8); }
    100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Sections Global */
.section {
    padding: 100px 0;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.problem-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.problem-card .icon {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-content {
    max-width: 800px;
    margin: 0 auto;
}

.solution-text > p {
    color: var(--text-muted);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-list .bullet {
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1.2;
}

.benefit-list strong {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
}

.benefit-list p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    padding: 80px 60px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.application-form {
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0,0,0,0.5);
}

.secure-note {
    text-align: center;
    font-size: 0.85rem !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    color: rgba(255,255,255,0.4) !important;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}
.footer-logo span { color: var(--gold); }

.footer-content p { color: var(--text-muted); font-size: 0.9rem; }

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* Footer Youtube Section */
.youtube-authority {
    margin: 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.youtube-authority p {
    font-family: var(--font-body);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.youtube-authority .yt-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
}

.youtube-authority .yt-link:hover {
    color: #FF0000;
    transform: scale(1.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4), 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5), 0 0 30px rgba(37, 211, 102, 0.6);
}

/* Utilities for JS */
html, body {
    overflow-x: hidden;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 3rem; }
    .hero-text p { margin: 0 auto 30px; }
    
    .problem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .hero-text h1 { font-size: 2.2rem; }
    .cta-box { padding: 40px 24px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .social-links a { margin: 0 10px; }
    
    /* Header & Badge Mobile Fixes */
    .header-container { padding: 0 16px; }
    .logo {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .header .btn-outline {
        font-size: 12px;
        padding: 8px 14px;
    }
    .badge {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 8px 16px;
    }
    
    /* Remoção do espaço morto nas seções */
    .section {
        padding: 60px 0 48px;
    }
}
