/* ========================================================================== */
/* CONFIGURAÇÃO DO ESTILO: Versão 1.0 (CSS Exclusivo da Landing Page)          */
/* DATA DE ATUALIZAÇÃO: 01/06/2026                                           */
/* ARQUIVO: index.css                                                        */
/* ========================================================================== */

/* MARCAÇÃO DE CONTROLE VISUAL: DIMENSÕES CUSTOMIZADAS DA ABA DE VÍDEOS */
:root {
    --video-w: 225px; /* Alterar a largura dos blocos de vídeo */
    --video-h: 400px; /* Alterar a altura dos blocos de vídeo */
}

/* 1. ESTRUTURA MACRO */
.lp-master-container { 
    width: 100%; 
    background-color: var(--background); 
    box-sizing: border-box; 
    overflow-x: hidden; 
}
.section-container { 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 6rem 2rem; 
    box-sizing: border-box; 
}

/* 2. CONFIGURAÇÕES DO HERO */
.hero-split { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    min-height: calc(100vh - 65px); 
}
.hero-text { flex: 1.2; }
.hero-media { flex: 0.8; display: flex; justify-content: center; position: relative; }

.tag-premium { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    background: rgba(124, 58, 237, 0.1); 
    border: 1px solid rgba(124, 58, 237, 0.25); 
    color: #a78bfa; 
    padding: 6px 14px; 
    border-radius: 50px; 
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.8px; 
    margin-bottom: 1.5rem; 
}

.headline-main { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1.15; 
    color: var(--text-contrast); 
    margin-bottom: 1.5rem; 
    letter-spacing: -1.5px; 
}
.headline-main span { 
    background: linear-gradient(135deg, #c084fc 0%, #6366f1 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}
.headline-sub { 
    font-size: 1.15rem; 
    color: var(--text-main); 
    line-height: 1.6; 
    margin-bottom: 2.5rem; 
}

.hero-metrics { 
    display: flex; 
    gap: 40px; 
    margin-top: 3rem; 
    border-top: 1px solid var(--panel-border); 
    padding-top: 2rem; 
}
.metric-item { display: flex; flex-direction: column; }
.metric-value { font-size: 2rem; font-weight: 800; color: var(--text-contrast); }
.metric-label { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.frame-video-vertical { 
    width: 100%; 
    max-width: 380px; 
    aspect-ratio: 9 / 16; 
    background-color: var(--panel); 
    border: 1px solid var(--panel-border); 
    border-radius: 24px; 
    overflow: hidden; 
    position: relative; 
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 50px rgba(124, 58, 237, 0.15); 
}
.cms-render-media { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 3. SEÇÃO PÚBLICO-ALVO */
.target-section { text-align: center; padding-top: 2rem; padding-bottom: 5rem; }
.target-title { font-size: 2.4rem; font-weight: 800; color: var(--text-contrast); margin-bottom: 3rem; letter-spacing: -0.5px; }
.target-title span { color: #a78bfa; }
.target-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 3.5rem; }

.target-card { 
    background: var(--panel); 
    border: 1px solid var(--panel-border); 
    border-radius: 16px; 
    padding: 35px 25px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    transition: transform 0.3s ease, border-color 0.3s ease; 
}
.target-card:hover { transform: translateY(-5px); border-color: rgba(124, 58, 237, 0.4); }

.target-icon-wrapper { 
    width: 55px; 
    height: 55px; 
    border-radius: 14px; 
    background: rgba(124, 58, 237, 0.1); 
    color: #a78bfa; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    margin-bottom: 20px; 
}
.target-card h4 { font-size: 1.1rem; color: var(--text-contrast); margin: 0 0 10px 0; font-weight: 700; }
.target-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.target-footer-text { font-size: 1.15rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; line-height: 1.6; }
.target-footer-text strong { color: var(--text-contrast); font-weight: 700; }

/* 4. RECURSOS / LOGS AVISOS */
.notice-bar { background: rgba(17, 19, 28, 0.6); border: 1px solid var(--panel-border); border-radius: 16px; padding: 25px; margin-bottom: 5rem; }
.notice-item { display: flex; align-items: flex-start; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.02); }
.notice-item:last-child { border-bottom: none; }
.badge-feature { padding: 3px 8px; border-radius: 4px; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; }

/* 5. GRID DE FOTOS 4:5 */
.gallery-grid-45 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; margin-top: 3rem; }
.prompt-card-45 { background: var(--panel); border: 1px solid var(--panel-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, border-color 0.3s ease; }
.prompt-card-45:hover { transform: translateY(-5px); border-color: var(--accent); }
.frame-photo-45 { width: 100%; aspect-ratio: 4 / 5; background-color: #050608; position: relative; overflow: hidden; }
.card-footer-info { padding: 20px; display: flex; flex-direction: column; gap: 15px; background: linear-gradient(to top, rgba(17,19,28,0.95), var(--panel)); flex-grow: 1; }
.prompt-title { font-size: 0.95rem; font-weight: 600; color: var(--text-contrast); margin: 0; line-height: 1.4; }
.btn-copy-clipboard { width: 100%; background: var(--accent-gradient); color: #fff; border: none; padding: 10px 16px; border-radius: 8px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: opacity 0.2s ease; }
.btn-copy-clipboard:hover { opacity: 0.93; }

/* 6. GRID DE VÍDEOS COM MÁSCARA */
.gallery-grid-videos { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 3rem; justify-content: center; }
.video-card-cms { width: var(--video-w); background: var(--panel); border: 1px solid var(--panel-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, border-color 0.3s ease; }
.video-card-cms:hover { transform: translateY(-5px); border-color: var(--accent); }
.frame-video-mask { width: 100%; height: var(--video-h); background-color: #050608; position: relative; overflow: hidden; }
.play-mask-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(9, 10, 15, 0.4); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; }
.play-btn-circle { width: 55px; height: 55px; background: rgba(124, 58, 237, 0.2); border: 2px solid var(--accent); color: var(--text-contrast); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; text-shadow: 0 0 15px var(--accent); box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); transition: all 0.3s ease; }
.video-card-cms:hover .play-btn-circle { transform: scale(1.1); background: var(--accent); box-shadow: 0 0 25px var(--accent); }
.video-card-cms:hover .play-mask-overlay { background: rgba(9, 10, 15, 0.6); }

/* 7. SEÇÃO DE DEPOIMENTOS */
.review-badge-top { display: inline-flex; align-items: center; gap: 6px; background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.2); color: #c084fc; padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; margin-bottom: 1.5rem; }
.testimonials-title { font-size: 3rem; font-weight: 800; color: var(--text-contrast); margin-bottom: 1rem; line-height: 1.1; letter-spacing: -1px; }
.testimonials-title span { background: linear-gradient(90deg, #818cf8 0%, #3b82f6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 3.5rem; }
.testimonial-card { background: var(--panel); border: 1px solid var(--panel-border); border-radius: 16px; padding: 30px 25px; display: flex; flex-direction: column; text-align: left; }
.testimonial-stars { color: #a855f7; font-size: 1rem; margin-bottom: 15px; display: flex; gap: 4px; }
.testimonial-quote { font-size: 0.95rem; color: var(--text-main); line-height: 1.6; margin: 0 0 25px 0; flex-grow: 1; }
.testimonial-author { margin-bottom: 15px; }
.testimonial-author-name { font-weight: 700; color: var(--text-contrast); font-size: 1rem; margin-bottom: 2px; }
.testimonial-author-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-pill { display: inline-block; background: rgba(139, 92, 246, 0.15); color: #e9d5ff; font-size: 0.72rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; width: fit-content; }

/* 8. FAQ E PLANOS */
.faq-container { max-width: 800px; margin: 3rem auto 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background-color: var(--panel); border: 1px solid var(--panel-border); border-radius: 12px; padding: 20px; cursor: pointer; }
.faq-question { font-weight: 600; color: var(--text-contrast); display: flex; justify-content: space-between; align-items: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 4rem; max-width: 1000px; margin-left: auto; margin-right: auto; }
.price-card { background: var(--panel); border: 1px solid var(--panel-border); border-radius: 20px; padding: 40px 30px; position: relative; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15); }
.price-badge { position: absolute; top: 20px; right: 20px; background: var(--accent-gradient); color: #fff; font-size: 0.65rem; font-weight: 800; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; }
.section-header-center { text-align: center; max-width: 650px; margin: 0 auto 4rem auto; }
.section-header-center h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }

/* TOAST COPIADO */
#toast-notification { position: fixed; bottom: 30px; right: 30px; background: #10b981; color: #000; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 0.85rem; z-index: 99999; display: flex; align-items: center; gap: 8px; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3); transform: translateY(100px); opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
#toast-notification.show { transform: translateY(0); opacity: 1; }

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .hero-split { flex-direction: column; text-align: center; padding: 4rem 0; gap: 40px; }
    .headline-main { font-size: 2.6rem; }
    .hero-metrics { justify-content: center; gap: 25px; }
    .frame-video-vertical { max-width: 320px; }
}
/* ========================================================================== */
/* COMPLEMENTO INDEX.CSS: Planos de Acesso & Rodapé Mestre                     */
/* ========================================================================== */

/* Seção de Vendas */
.pricing-section { text-align: center; padding-top: 4rem; padding-bottom: 6rem; }
.pricing-badge-countdown { display: inline-flex; align-items: center; gap: 8px; background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.2); color: var(--danger); padding: 8px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 2rem; letter-spacing: 0.5px; }

/* Bloco do Cronômetro Visual da Imagem */
.countdown-box-wrapper { display: inline-flex; align-items: center; gap: 12px; background: rgba(17, 19, 28, 0.8); border: 1px solid var(--panel-border); padding: 16px 24px; border-radius: 14px; margin-bottom: 4rem; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; }
.countdown-num { font-size: 1.6rem; font-weight: 800; color: var(--text-contrast); background: rgba(239, 68, 68, 0.1); padding: 4px 10px; border-radius: 6px; min-width: 40px; text-align: center; border: 1px solid rgba(239, 68, 68, 0.2); }
.countdown-lbl { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; font-weight: 700; }
.countdown-sep { font-size: 1.5rem; font-weight: 800; color: var(--danger); animation: blinkCms 1s infinite; }

/* Grid de Planos Avançado */
.pricing-grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto 3rem auto; }
.plan-box { background: var(--panel); border: 1px solid var(--panel-border); border-radius: 20px; padding: 45px 35px; text-align: left; display: flex; flex-direction: column; position: relative; }
.plan-box.featured { border-color: var(--accent); box-shadow: 0 15px 45px rgba(124, 58, 237, 0.15); }

.plan-tag-top { position: absolute; top: -14px; left: 35px; background: var(--accent-gradient); color: #fff; font-size: 0.7rem; font-weight: 800; padding: 4px 14px; border-radius: 50px; text-transform: uppercase; }
.plan-header h3 { font-size: 1.4rem; color: var(--text-contrast); margin: 0 0 4px 0; }
.plan-header p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 25px 0; }

.plan-price-block { border-bottom: 1px solid var(--panel-border); padding-bottom: 25px; margin-bottom: 25px; }
.price-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; display: block; margin-bottom: 2px; }
.price-current { font-size: 2.8rem; font-weight: 800; color: var(--text-contrast); display: inline-items; line-height: 1; }
.price-current span { font-size: 1.2rem; font-weight: 500; }
.price-save-badge { display: inline-block; background: var(--danger); color: #fff; font-size: 0.65rem; font-weight: 800; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; margin-left: 8px; vertical-align: middle; }

/* Lista de Recursos dos Planos */
.plan-features-list { list-style: none; padding: 0; margin: 0 0 35px 0; display: flex; flex-direction: column; gap: 14px; }
.plan-features-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-main); }
.plan-features-list li i { color: var(--success); font-size: 0.95rem; }

.btn-checkout { width: 100%; text-align: center; justify-content: center; padding: 14px 20px; font-size: 0.9rem; border-radius: 10px; }

/* Footer */
.footer-mestre { background: #050609; border-top: 1px solid var(--panel-border); padding: 4rem 2rem 2rem 2rem; margin-top: 4rem; }
.footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; padding-bottom: 3rem; }
.footer-col h5 { color: var(--text-contrast); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; margin: 0 0 20px 0; letter-spacing: 0.5px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-contrast); }

.footer-bottom { max-width: 1300px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.03); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.8rem; color: var(--text-muted); }

@keyframes blinkCms { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ========================================================================== */
/* SEÇÃO FAQ: SISTEMA DE ACCORDION / DROPDOWN EM TRANSIÇÃO DE SUAVIDADE        */
/* ========================================================================== */
.faq-container { 
    max-width: 800px; 
    margin: 3rem auto 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}

.faq-item { 
    background-color: var(--panel); 
    border: 1px solid var(--panel-border); 
    border-radius: 12px; 
    padding: 20px; 
    cursor: pointer;
    transition: border-color 0.2s ease;
    overflow: hidden;
}
.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.4);
}

.faq-question { 
    font-weight: 600; 
    color: var(--text-contrast); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 1rem;
}

/* Ícone de seta com rotação suave */
.faq-question i {
    font-size: 0.8rem; 
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Caixa da resposta: Escondida e zerada por padrão */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-top 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* Estado ativo: Revela o conteúdo dinamicamente */
.faq-item.active .faq-answer {
    max-height: 300px; /* Altura máxima flexível para o texto expandir */
    opacity: 1;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 15px;
}