:root {
    --bg: #03050a;
    --primary: #c7d2fe;
    --accent: #818cf8;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.12);
}

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

body {
    background-color: var(--bg);
    color: #f1f5f9;
    font-family: 'Lora', serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fundo Animado */
.mesh-gradient {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 30%, #1e1b4b 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, #312e81 0%, transparent 40%);
    z-index: -2;
    filter: blur(60px);
    opacity: 0.6;
    animation: meshMove 20s infinite alternate;
}

@keyframes meshMove {
    from { transform: scale(1); }
    to { transform: scale(1.2) rotate(5deg); }
}

#stars { position: fixed; top: 0; left: 0; z-index: -1; pointer-events: none; }

.container { max-width: 900px; margin: 0 auto; padding: 40px 20px; }

/* Header */
.hero { text-align: center; margin-bottom: 60px; padding-top: 40px; }
.badge {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.gradient-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.subtitle { font-size: 1.2rem; opacity: 0.8; margin-top: 20px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Video Youtube Section */
.video-section { margin: 60px 0; }
.video-glow-container {
    position: relative;
    padding: 10px;
    background: var(--glass);
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 0 40px rgba(129, 140, 248, 0.15);
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
}

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

/* NOVO: Botão CTA abaixo do vídeo */
.video-cta-wrapper {
    text-align: center;
    margin-top: 30px;
}

.secondary-btn {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--border);
    transition: 0.3s ease;
    backdrop-filter: blur(5px);
    margin-bottom: 10px;
}

.secondary-btn:hover {
    background: var(--glass);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(129, 140, 248, 0.1);
}

.video-caption { text-align: center; margin-top: 15px; opacity: 0.5; font-style: italic; font-size: 0.9rem; }

/* Blocos de Texto */
.section { margin: 80px 0; }
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 40px;
    text-align: center;
}

.highlight { color: var(--primary); font-weight: 600; font-size: 1.2rem; margin: 15px 0; }
.divider { border: 0; height: 1px; background: var(--border); margin: 30px auto; width: 40%; }

.features-minimal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    font-size: 0.9rem;
    opacity: 0.7;
    flex-wrap: wrap;
}

/* Grid Entregáveis */
.section-title { 
    text-align: center; 
    margin-bottom: 40px; 
    font-family: 'Montserrat'; 
    font-size: 1.8rem;
}

.grid-deliverables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: 0.4s ease;
}

.card:hover { border-color: var(--accent); transform: translateY(-5px); }
.card-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }

/* Depoimentos */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: var(--glass);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.testimonial-card:hover { transform: translateY(-5px); border-color: var(--accent); }

.stars-rating { color: #fbbf24; margin-bottom: 10px; }
.testimonial-text { font-style: italic; font-size: 1rem; color: #cbd5e1; margin-bottom: 20px; }
.user-info { display: flex; align-items: center; gap: 12px; }
.user-thumb { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--accent); }
.user-info span { font-weight: 600; font-size: 0.85rem; font-family: 'Montserrat'; }

/* CTA Principal */
.cta-section { margin: 100px 0; }
.cta-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(129, 140, 248, 0.1));
    padding: 60px 20px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid var(--accent);
}

.main-btn {
    display: inline-block;
    background: #fff;
    color: #030712;
    padding: 22px 45px;
    border-radius: 100px;
    font-family: 'Montserrat';
    font-weight: 800;
    text-decoration: none;
    margin: 25px 0;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(129, 140, 248, 0.3);
}

.main-btn:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(129, 140, 248, 0.5); }
.secure-tag { display: block; font-size: 0.8rem; opacity: 0.5; }

/* Footer */
.footer-info { text-align: center; padding-bottom: 60px; }
.legal { font-size: 0.75rem; opacity: 0.4; max-width: 600px; margin: 0 auto 20px; }
.copy { font-size: 0.8rem; opacity: 0.3; }

/* Animations */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.2, 1, 0.3, 1); }
[data-reveal].active { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
    .container { padding: 20px; }
    .glass-card { padding: 30px 20px; }
    .secondary-btn { width: 100%; }
}