:root {
    --bg: #f8f9ff;
    --primary: #0035ff;
    --accent: #ccff00;
    --dark: #0a0a0b;
    --white: #ffffff;
    --text-gray: #475569;
    --border: rgba(0,0,0,0.08);
    --shadow-glass: 0 12px 40px 0 rgba(0, 53, 255, 0.12);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* CONFIG GLOBAL */
body {
    background-color: var(--bg);
    color: var(--dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- HEADER FIXO (Ajustado) --- */
nav {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(248, 249, 255, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: 80px;
}

.nav-container {
    display: flex; 
    justify-content: space-between; /* Garante que fiquem em lados opostos */
    align-items: center;
    padding: 0 8%; 
    max-width: 1400px; 
    margin: 0 auto;
    height: 100%;
    width: 100%; /* Garante que o container ocupe tudo para separar os itens */
    gap: 20px; /* Impede que a logo e o botão se toquem em telas minúsculas */
}

.logo { 
    font-family: var(--font-heading); 
    font-weight: 900; 
    font-size: 1.8rem; 
    color: var(--dark); 
    text-decoration: none; 
    white-space: nowrap; /* Impede a logo de quebrar linha */
}
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links li a { text-decoration: none; color: var(--dark); font-weight: 600; transition: color 0.3s; }
.nav-links li a:hover { color: var(--primary); }

/* Estilo para Botão Login e Botão Voltar */
.btn-login, .btn-back {
    background: var(--dark); 
    color: white; 
    padding: 0.7rem 1.8rem;
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: 0.3s;
    font-size: 0.95rem; 
    white-space: nowrap;
    /* Se a página tiver só logo e botão, isso força o botão pra direita */
    margin-left: auto; 
}
/* No desktop, se tiver links, removemos a margem auto para não quebrar o layout */
@media (min-width: 901px) {
    .nav-links + .btn-login { margin-left: 0; }
}

.btn-login:hover, .btn-back:hover { background: var(--primary); }

/* --- CORREÇÃO DE CONTEÚDO SOB O MENU --- */
main {
    padding-top: 120px; /* Empurra o conteúdo para baixo do menu fixo */
}

/* --- HERO (Compensado) --- */
.hero {
    padding: 40px 8% 100px; /* Reduzi o topo pq o main já tem padding */
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; max-width: 1400px; margin: 0 auto;
}

.badge {
    display: inline-block; padding: 8px 18px; background: var(--white);
    border-radius: 50px; color: var(--primary); font-weight: 700;
    font-size: 0.8rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 1.5rem;
}
h1 {
    font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1; font-weight: 900; margin-bottom: 1.5rem;
}
.highlight { background: var(--accent); padding: 0 8px; border-radius: 8px; display: inline-block; transform: rotate(-2deg); }
.hero p { font-size: 1.15rem; color: var(--text-gray); margin-bottom: 2.5rem; max-width: 500px; }

.cta-group { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-main {
    background: var(--primary); color: white; padding: 1rem 2rem;
    border-radius: 12px; font-weight: 800; text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 53, 255, 0.25); transition: 0.3s;
}
.btn-main:hover { transform: translateY(-3px); }
.btn-secondary { color: var(--dark); font-weight: 700; text-decoration: none; padding: 1rem 1.5rem; }

/* Stats & Imagem Hero */
.hero-stats { display: flex; gap: 40px; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-item h3 { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); margin-bottom: 0; }
.hero-image-area { position: relative; }
.main-img-box { width: 100%; border-radius: 40px; overflow: hidden; border: 6px solid white; box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.main-img-box img { width: 100%; height: auto; display: block; }
.floating-card {
    position: absolute; background: rgba(255, 255, 255, 0.9); padding: 1rem;
    border-radius: 16px; box-shadow: var(--shadow-glass); font-weight: 700;
    font-family: var(--font-heading); animation: float 4s ease-in-out infinite;
}
.card-1 { top: 10%; left: -5%; color: var(--primary); }
.card-2 { bottom: 15%; right: -5%; border-left: 5px solid var(--accent); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* --- SEÇÕES GERAIS --- */
.social-proof-section { background: var(--dark); color: white; padding: 80px 8%; }
.section-title-white { text-align: center; font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 40px; }
.dual-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: 0 auto; }
.persona-card { 
    background: rgba(255,255,255,0.05); padding: 30px; border-radius: 20px; 
    display: none; border: 1px solid rgba(255,255,255,0.1); 
}
.persona-card.active { display: block; animation: fadeUp 0.5s ease forwards; }
.persona-card h4 { color: var(--accent); margin-bottom: 10px; font-family: var(--font-heading); }
.tag { font-size: 0.75rem; text-transform: uppercase; opacity: 0.6; margin-bottom: 15px; display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.section-padding { padding: 100px 8%; max-width: 1300px; margin: 0 auto; }
.bg-light { background: white; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; text-align: center; margin-bottom: 50px; font-weight: 900; }

/* --- FERRAMENTAS --- */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.tool-card { background: white; padding: 30px; border-radius: 20px; border: 1px solid var(--border); transition: 0.3s; }
.tool-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.tool-icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }

/* --- VÍDEOS --- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.video-card { text-align: center; }
.video-card h4 { font-family: var(--font-heading); margin-bottom: 15px; color: var(--primary); }
.video-placeholder { 
    width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 16px; 
    overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}
.video-placeholder video { width: 100%; height: 100%; object-fit: cover; }

/* =========================================
   NOVA SEÇÃO DE PLANOS (MODERN SAAS)
   ========================================= */
.pricing-section-modern {
    padding: 100px 8%;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.pricing-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark);
}
.pricing-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center; 
}

/* Card Padrão */
.plan-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    width: 100%;
    max-width: 340px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 15px;
    display: block;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.4;
    min-height: 40px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--dark);
}
.icon-check {
    color: var(--primary);
    font-weight: 900;
    background: rgba(0, 53, 255, 0.1);
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}

/* Botões */
.btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
.btn-outline {
    border: 2px solid #e2e8f0;
    color: var(--dark);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: white;
}

/* --- CARD DESTAQUE (TRIMESTRAL) --- */
.plan-card.featured {
    background: var(--dark); 
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(1.05); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    z-index: 2;
    padding: 50px 35px;
}

.plan-card.featured .plan-name { color: rgba(255,255,255,0.6); }
.plan-card.featured .plan-price { color: white; }
.plan-card.featured .plan-price span { color: rgba(255,255,255,0.5); }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.7); }
.plan-card.featured .plan-features li { color: white; }
.plan-card.featured .icon-check {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary-neon {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
}
.btn-primary-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(204, 255, 0, 0.4);
}

.badge-popular {
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 53, 255, 0.4);
}

/* Responsividade Planos */
@media (max-width: 900px) {
    .pricing-grid { flex-direction: column; gap: 40px; }
    .plan-card { width: 100%; max-width: 100%; }
    .plan-card.featured { transform: scale(1); }
}
/* --- FAQ --- */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border-radius: 16px; margin-bottom: 15px; border: 1px solid var(--border); overflow: hidden; }
.faq-item.active { border-color: var(--primary); }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-family: var(--font-heading); }
.faq-item.active .faq-question { color: var(--primary); }

.faq-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; }
.faq-item.active .faq-content { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; min-height: 0; padding: 0 20px; opacity: 0; transition: 0.3s; color: var(--text-gray); }
.faq-item.active .faq-answer { padding-bottom: 20px; opacity: 1; }
.faq-icon-box { width: 30px; height: 30px; background: #f0f0ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.faq-item.active .faq-icon-box { transform: rotate(45deg); background: var(--primary); color: white; }

/* --- FOOTER --- */
.final-cta { background: var(--primary); color: white; padding: 80px 8%; text-align: center; border-radius: 60px 60px 0 0; }
.btn-cta-large { background: var(--accent); color: var(--dark); padding: 1.2rem 3rem; font-weight: 900; border-radius: 12px; text-decoration: none; display: inline-block; margin-top: 20px; }

footer { background: var(--dark); color: white; padding: 80px 8% 20px; }
.footer-container { max-width: 1300px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.logo-footer { color: white; margin-bottom: 1.5rem; display: block; font-size: 1.8rem; }
.brand-col p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 300px; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: white; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.footer-col h4 { font-family: var(--font-heading); margin-bottom: 1.5rem; color: var(--white); font-size: 1.1rem; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* --- MOBILE (RESPONSIVIDADE) --- */
@media (max-width: 900px) {
    .nav-links { display: none; } 
    .nav-container { padding: 0 5%; }
    
    /* Correção do Botão Voltar "em cima" da logo */
    .logo { font-size: 1.5rem; } /* Diminui um pouco a logo para dar espaço */
    .btn-login, .btn-back { font-size: 0.85rem; padding: 0.6rem 1.4rem; }
    
    .hero { grid-template-columns: 1fr; text-align: center; padding: 40px 5% 100px; gap: 3rem; }
    .hero p { margin: 0 auto 2rem; }
    .hero-stats { justify-content: center; }
    .cta-group { justify-content: center; }
    .dual-cards-container { grid-template-columns: 1fr; }
    .price-card.featured { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    h1 { font-size: 2.5rem; }
}

/* =======================================================
   1. ESTILO DO INDEX (AGORA LIMPO E DIRETO)
   ======================================================= */
:root {
    --bg: #f8f9ff;
    --primary: #0035ff;
    --accent: #ccff00;
    --dark: #0a0a0b;
    --white: #ffffff;
    --text-gray: #475569;
    --border: rgba(0,0,0,0.08);
    --shadow-glass: 0 12px 40px 0 rgba(0, 53, 255, 0.12);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* CONFIG GLOBAL */
body {
    background-color: var(--bg);
    color: var(--dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- HEADER FIXO --- */
nav {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(248, 249, 255, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: 80px;
}

.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 8%; max-width: 1400px; margin: 0 auto;
    height: 100%; width: 100%; gap: 20px;
}

.logo { 
    font-family: var(--font-heading); font-weight: 900; 
    font-size: 1.8rem; color: var(--dark); text-decoration: none; white-space: nowrap; 
}
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links li a { text-decoration: none; color: var(--dark); font-weight: 600; transition: color 0.3s; }
.nav-links li a:hover { color: var(--primary); }

.btn-login, .btn-back {
    background: var(--dark); color: white; padding: 0.7rem 1.8rem;
    border-radius: 50px; text-decoration: none; font-weight: 700; 
    transition: 0.3s; font-size: 0.95rem; white-space: nowrap; margin-left: auto; 
}
.btn-login:hover, .btn-back:hover { background: var(--primary); }

main { padding-top: 120px; }

/* --- HERO (HOME) --- */
.hero {
    padding: 40px 8% 100px; display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; max-width: 1400px; margin: 0 auto;
}

.badge {
    display: inline-block; padding: 8px 18px; background: var(--white);
    border-radius: 50px; color: var(--primary); font-weight: 700;
    font-size: 0.8rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 1.5rem;
}
h1 {
    font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1; font-weight: 900; margin-bottom: 1.5rem;
}
.highlight { background: var(--accent); padding: 0 8px; border-radius: 8px; display: inline-block; transform: rotate(-2deg); }
.hero p { font-size: 1.15rem; color: var(--text-gray); margin-bottom: 2.5rem; max-width: 500px; }

.cta-group { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-main {
    background: var(--primary); color: white; padding: 1rem 2rem;
    border-radius: 12px; font-weight: 800; text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 53, 255, 0.25); transition: 0.3s;
}
.btn-main:hover { transform: translateY(-3px); }
.btn-secondary { color: var(--dark); font-weight: 700; text-decoration: none; padding: 1rem 1.5rem; }

.hero-stats { display: flex; gap: 40px; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-item h3 { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); margin-bottom: 0; }
.hero-image-area { position: relative; }
.main-img-box { width: 100%; border-radius: 40px; overflow: hidden; border: 6px solid white; box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.main-img-box img { width: 100%; height: auto; display: block; }
.floating-card {
    position: absolute; background: rgba(255, 255, 255, 0.9); padding: 1rem;
    border-radius: 16px; box-shadow: var(--shadow-glass); font-weight: 700;
    font-family: var(--font-heading); animation: float 4s ease-in-out infinite;
}
.card-1 { top: 10%; left: -5%; color: var(--primary); }
.card-2 { bottom: 15%; right: -5%; border-left: 5px solid var(--accent); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* --- SOCIAL PROOF --- */
.social-proof-section { background: var(--dark); color: white; padding: 80px 8%; }
.section-title-white { text-align: center; font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 40px; }
.dual-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: 0 auto; }
.persona-card { 
    background: rgba(255,255,255,0.05); padding: 30px; border-radius: 20px; 
    display: none; border: 1px solid rgba(255,255,255,0.1); 
}
.persona-card.active { display: block; animation: fadeUp 0.5s ease forwards; }
.persona-card h4 { color: var(--accent); margin-bottom: 10px; font-family: var(--font-heading); }
.tag { font-size: 0.75rem; text-transform: uppercase; opacity: 0.6; margin-bottom: 15px; display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.section-padding { padding: 100px 8%; max-width: 1300px; margin: 0 auto; }
.bg-light { background: white; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; text-align: center; margin-bottom: 50px; font-weight: 900; }

/* --- TOOLS & VIDEOS --- */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.tool-card { background: white; padding: 30px; border-radius: 20px; border: 1px solid var(--border); transition: 0.3s; }
.tool-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.tool-icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.video-card { text-align: center; }
.video-card h4 { font-family: var(--font-heading); margin-bottom: 15px; color: var(--primary); }
.video-placeholder { 
    width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 16px; 
    overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}
.video-placeholder video { width: 100%; height: 100%; object-fit: cover; }

/* --- PRICING --- */
.pricing-bg { background: linear-gradient(to bottom, #f0f2ff 50%, white 50%); border-radius: 60px 60px 0 0; }
.price-container { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.price-card { 
    background: white; padding: 40px 30px; border-radius: 30px; width: 100%; 
    max-width: 350px; border: 1px solid var(--border); display: flex; 
    flex-direction: column; justify-content: space-between; 
}
.price-card.featured { border: 2px solid var(--primary); transform: scale(1.05); position: relative; z-index: 2; }
.featured-tag { 
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%); 
    background: var(--primary); color: white; padding: 5px 15px; 
    border-radius: 20px; font-size: 0.8rem; font-weight: 700; 
}
.price-value { font-size: 2.5rem; margin: 20px 0; font-family: var(--font-heading); font-weight: 900; }
.check-list { list-style: none; margin-bottom: 30px; }
.check-list li { margin-bottom: 10px; display: flex; gap: 10px; }
.check-list li::before { content: '✓'; color: var(--primary); font-weight: 900; }
.btn-plan-basic { background: #f1f5f9; color: var(--dark); padding: 1rem; border-radius: 12px; text-align: center; text-decoration: none; font-weight: 700; display: block; }
.btn-plan-feature { background: var(--accent); color: var(--dark); padding: 1rem; border-radius: 12px; text-align: center; text-decoration: none; font-weight: 800; display: block; }

/* --- FAQ --- */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border-radius: 16px; margin-bottom: 15px; border: 1px solid var(--border); overflow: hidden; }
.faq-item.active { border-color: var(--primary); }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-family: var(--font-heading); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; }
.faq-item.active .faq-content { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; min-height: 0; padding: 0 20px; opacity: 0; transition: 0.3s; color: var(--text-gray); }
.faq-item.active .faq-answer { padding-bottom: 20px; opacity: 1; }
.faq-icon-box { width: 30px; height: 30px; background: #f0f0ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.faq-item.active .faq-icon-box { transform: rotate(45deg); background: var(--primary); color: white; }

/* =======================================================
   AQUI ENTRA O CÓDIGO QUE VOCÊ PEDIU (PARCEIROS)
   ======================================================= */

/* 1. ESTILO DO INDEX (CLEAN) */
.partner-banner-clean {
    margin: 80px 8% 100px;
    background: var(--dark);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.partner-banner-clean::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(204, 255, 0, 0.1), transparent 60%);
    pointer-events: none;
}

.partner-banner-clean h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.partner-banner-clean p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.btn-banner-link {
    background: white; color: var(--dark);
    padding: 1rem 2.5rem; border-radius: 50px;
    font-weight: 800; text-decoration: none;
    transition: 0.3s; display: inline-block;
}
.btn-banner-link:hover { transform: scale(1.05); background: var(--accent); }


/* 2. PÁGINA PARCEIRO (FOMO + VISUAL) */

/* Barra FOMO */
.fomo-bar-sticky {
    background: #0a0a0b;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    z-index: 100;
}
.fomo-track { display: flex; gap: 50px; animation: scrollFomo 25s linear infinite; }
.fomo-item {
    font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7);
    display: flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.fomo-item span { color: var(--accent); font-weight: 800; }
@keyframes scrollFomo { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Hero da Página Parceiro */
.partner-hero-split {
    background: var(--dark);
    padding: 60px 5% 80px; 
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-split-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-left { text-align: left; }
.hero-left h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
}
.hero-left p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-right {
    display: flex; justify-content: center; position: relative;
}
.mockup-wrapper {
    width: 280px;
    position: relative;
    perspective: 1000px;
}
.mockup-phone {
    transform: rotateY(-12deg) rotateX(5deg);
    display: flex; flex-direction: column; gap: 15px;
}
.notif-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px; padding: 15px;
    display: flex; gap: 15px; align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: floatNotif 5s ease-in-out infinite;
    border-left: 4px solid var(--accent);
}
.notif-card.secondary { animation-delay: 2.5s; opacity: 0.9; border-left-color: var(--primary); }
.notif-icon {
    width: 35px; height: 35px; background: #eff6ff; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.notif-text h5 { color: #0f172a; font-size: 0.85rem; font-weight: 800; margin-bottom: 2px; }
.notif-text p { color: #64748b; font-size: 0.75rem; font-weight: 600; margin: 0; }
.badge-money { background: #dcfce7; color: #15803d; padding: 2px 6px; border-radius: 4px; margin-left: 5px; }

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

/* Ajustes Mobile Específicos do Parceiro */
@media (max-width: 900px) {
    .hero-split-container { grid-template-columns: 1fr; text-align: center; }
    .hero-left { margin-bottom: 40px; }
    .hero-left p { margin: 0 auto 30px; }
    .hero-right { display: none; }
}


/* =======================================================
   3. ESTILOS RESTANTES (Calculadora, Form, Footer)
   ======================================================= */

/* Calculadora Dark */
.calc-section-dark {
    max-width: 900px; margin: -60px auto 80px; background: white; border-radius: 30px; padding: 50px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15); border: 1px solid var(--border);
    position: relative; z-index: 10;
}
.calc-screen {
    background: var(--dark); border-radius: 20px; padding: 40px 20px;
    text-align: center; margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.1); box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}
.calc-big-number {
    font-family: var(--font-heading); font-size: 4rem; font-weight: 900;
    color: var(--accent); text-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
    line-height: 1; margin: 10px 0;
}
.calc-label { color: rgba(255,255,255,0.6); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Range Slider */
input[type=range] {
    width: 100%; -webkit-appearance: none; background: #e2e8f0; height: 10px;
    border-radius: 10px; outline: none; margin: 20px 0;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 30px; height: 30px;
    background: var(--primary); border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 53, 255, 0.3); border-radius: 50%;
    cursor: pointer; transition: 0.2s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); background: var(--accent); }

/* Benefits Grid */
.benefits-simple-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; margin-bottom: 80px;
}
.benefit-card {
    text-align: left; padding: 30px; border-radius: 20px; background: #f8f9ff;
    border: 1px solid rgba(0,0,0,0.05); transition: 0.3s;
}
.benefit-card:hover { transform: translateY(-5px); background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }

/* Form */
.form-box-clean {
    max-width: 600px; margin: 0 auto; background: white; padding: 40px;
    border-radius: 24px; border: 1px solid var(--border);
}
.form-input {
    width: 100%; padding: 12px 16px; border-radius: 12px;
    border: 2px solid #e2e8f0; font-family: var(--font-body);
    font-size: 1rem; transition: 0.3s;
}
.form-input:focus { border-color: var(--primary); outline: none; }

/* --- FOOTER --- */
.final-cta { background: var(--primary); color: white; padding: 80px 8%; text-align: center; border-radius: 60px 60px 0 0; }
.btn-cta-large { background: var(--accent); color: var(--dark); padding: 1.2rem 3rem; font-weight: 900; border-radius: 12px; text-decoration: none; display: inline-block; margin-top: 20px; }
footer { background: var(--dark); color: white; padding: 80px 8% 20px; }
.footer-container { max-width: 1300px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.logo-footer { color: white; margin-bottom: 1.5rem; display: block; font-size: 1.8rem; }
.brand-col p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 300px; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: white; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.footer-col h4 { font-family: var(--font-heading); margin-bottom: 1.5rem; color: var(--white); font-size: 1.1rem; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* --- RESPONSIVIDADE GERAL --- */
@media (max-width: 900px) {
    /* Nav */
    .nav-links { display: none; } 
    .nav-container { padding: 0 5%; }
    .logo { font-size: 1.5rem; } 
    .btn-login, .btn-back { font-size: 0.85rem; padding: 0.6rem 1.4rem; }
    
    /* Hero Home */
    .hero { grid-template-columns: 1fr; text-align: center; padding: 40px 5% 100px; gap: 3rem; }
    .hero p { margin: 0 auto 2rem; }
    .hero-stats { justify-content: center; }
    .cta-group { justify-content: center; }
    
    /* Geral Mobile */
    .dual-cards-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    h1 { font-size: 2.5rem; }
    
    /* Ajustes Extras Parceiro Mobile */
    .calc-section-dark { margin-top: 20px; padding: 30px 20px; }
    .calc-big-number { font-size: 3rem; }
}

/* --- NOVO CSS: REGRAS E DESTAQUES (PARCEIRO) --- */

/* Título Neon Pulsante */
.neon-brand-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 10px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 900;
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.3);
    margin-bottom: 25px;
    display: inline-block;
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from { box-shadow: 0 0 10px rgba(204, 255, 0, 0.2); }
    to { box-shadow: 0 0 25px rgba(204, 255, 0, 0.6); transform: scale(1.02); }
}

/* Seção de Regras (Transparência) */
.rules-section {
    max-width: 1000px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.rule-card {
    background: rgba(255, 255, 255, 0.03); /* Fundo bem sutil dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
}

.rule-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.rule-icon { font-size: 1.8rem; margin-bottom: 15px; display: block; }

.rule-title {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.rule-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Botão Voltar Nav */
.btn-nav-back {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.btn-nav-back:hover { color: var(--primary); transform: translateX(-5px); }