/* ============================================
   ESTILOS ESPECÍFICOS PARA LANDING PAGE
   ============================================ */

/* Garantir que a landing page não tenha padding do container principal */
.hero-section {
    margin-top: 0;
}

/* Espaçamento padrão entre seções */
.landing-section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .landing-section {
        padding: 60px 0;
    }
}

/* ============================================
   SEÇÃO 1: HERO
   ============================================ */

.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

body.dark-mode .hero-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #F0F5FF;
    border: 1px solid #E0E7FF;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 24px;
}

body.dark-mode .hero-badge {
    background-color: #1f2937;
    border-color: #374151;
    color: #c9d1d9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1F2937;
}

body.dark-mode .hero-title {
    color: #c9d1d9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #374151;
    max-width: 800px;
    margin: 0 auto 32px;
}

body.dark-mode .hero-subtitle {
    color: #b1bac4;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 32px auto 40px;
    max-width: 600px;
    text-align: left;
}

.hero-bullets li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #374151;
}

body.dark-mode .hero-bullets li {
    color: #b1bac4;
}

.hero-bullets li::before {
    content: "✅ ";
    margin-right: 12px;
    font-size: 1.2rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-cta-buttons .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

.hero-support-text {
    font-size: 0.95rem;
    color: #6B7280;
    margin-top: 16px;
}

body.dark-mode .hero-support-text {
    color: #8b949e;
}

/* ============================================
   SEÇÃO 2: O PROBLEMA
   ============================================ */

.problema-section {
    background-color: #FFFFFF;
}

body.dark-mode .problema-section {
    background-color: #0d1117;
}

.problema-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #1F2937;
}

body.dark-mode .problema-title {
    color: #c9d1d9;
}

.problema-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
}

body.dark-mode .problema-intro {
    color: #b1bac4;
}

.problema-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 32px;
}

.problema-list li {
    padding: 16px 0;
    font-size: 1.1rem;
    color: #374151;
    padding-left: 40px;
    position: relative;
}

body.dark-mode .problema-list li {
    color: #b1bac4;
}

.problema-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.problema-transition {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2262EC;
    margin-top: 40px;
}

body.dark-mode .problema-transition {
    color: #007D3F;
}

/* ============================================
   SEÇÃO 3: A SOLUÇÃO
   ============================================ */

.solucao-section {
    background-color: #F8F9FA;
}

body.dark-mode .solucao-section {
    background-color: #161b22;
}

.solucao-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1F2937;
}

body.dark-mode .solucao-title {
    color: #c9d1d9;
}

.solucao-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.solucao-block {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode .solucao-block {
    background-color: #0d1117;
    border: 1px solid #21262d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.solucao-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body.dark-mode .solucao-block:hover {
    box-shadow: 0 8px 24px rgba(0, 125, 63, 0.2);
}

.solucao-block-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.solucao-block-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F2937;
}

body.dark-mode .solucao-block-title {
    color: #c9d1d9;
}

.solucao-block-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

body.dark-mode .solucao-block-text {
    color: #b1bac4;
}

.solucao-block-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.solucao-block-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #374151;
}

body.dark-mode .solucao-block-list li {
    color: #b1bac4;
}

.solucao-block-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2262EC;
    font-weight: bold;
    font-size: 1.5rem;
}

body.dark-mode .solucao-block-list li::before {
    color: #007D3F;
}

.solucao-block-ideal {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

body.dark-mode .solucao-block-ideal {
    border-top-color: #21262d;
}

.solucao-block-ideal-title {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

body.dark-mode .solucao-block-ideal-title {
    color: #c9d1d9;
}

.solucao-block-ideal-list {
    list-style: none;
    padding: 0;
}

.solucao-block-ideal-list li {
    padding: 6px 0;
    color: #6B7280;
}

body.dark-mode .solucao-block-ideal-list li {
    color: #8b949e;
}

/* ============================================
   SEÇÃO 4: COMO FUNCIONA
   ============================================ */

.como-funciona-section {
    background-color: #FFFFFF;
}

body.dark-mode .como-funciona-section {
    background-color: #0d1117;
}

.como-funciona-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1F2937;
}

body.dark-mode .como-funciona-title {
    color: #c9d1d9;
}

.como-funciona-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.como-funciona-step {
    text-align: center;
    padding: 24px;
}

.como-funciona-step-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.como-funciona-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1F2937;
}

body.dark-mode .como-funciona-step-title {
    color: #c9d1d9;
}

.como-funciona-step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

body.dark-mode .como-funciona-step-text {
    color: #b1bac4;
}

.como-funciona-reforco {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
    margin-top: 48px;
    font-style: italic;
}

body.dark-mode .como-funciona-reforco {
    color: #8b949e;
}

/* ============================================
   SEÇÃO 4.5: LIMITES DO TESTE E PLANOS
   ============================================ */

.limites-section {
    background-color: #FFFFFF;
}

body.dark-mode .limites-section {
    background-color: #0d1117;
}

.limites-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1F2937;
}

body.dark-mode .limites-title {
    color: #c9d1d9;
}

.limites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.limite-card {
    background-color: #F8F9FA;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
}

body.dark-mode .limite-card {
    background-color: #161b22;
    border-color: #21262d;
}

.limite-card-free {
    border-left: 4px solid #2262EC;
}

body.dark-mode .limite-card-free {
    border-left-color: #007D3F;
}

.limite-card-paid {
    border-left: 4px solid #10B981;
}

body.dark-mode .limite-card-paid {
    border-left-color: #00a050;
}

.limite-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1F2937;
}

body.dark-mode .limite-card-title {
    color: #c9d1d9;
}

.limite-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.limite-card-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

body.dark-mode .limite-card-list li {
    color: #b1bac4;
}

.limite-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2262EC;
    font-weight: bold;
    font-size: 1.2rem;
}

body.dark-mode .limite-card-list li::before {
    color: #007D3F;
}

.limite-card-paid .limite-card-list li::before {
    color: #10B981;
}

body.dark-mode .limite-card-paid .limite-card-list li::before {
    color: #00a050;
}

.limites-honest-line {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6B7280;
    font-style: italic;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px;
    background-color: #F0F5FF;
    border-radius: 8px;
    border-left: 4px solid #2262EC;
}

body.dark-mode .limites-honest-line {
    color: #8b949e;
    background-color: #1f2937;
    border-left-color: #007D3F;
}

/* ============================================
   SEÇÃO 5: PARA QUEM É
   ============================================ */

.para-quem-section {
    background-color: #F8F9FA;
}

body.dark-mode .para-quem-section {
    background-color: #161b22;
}

.para-quem-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1F2937;
}

body.dark-mode .para-quem-title {
    color: #c9d1d9;
}

.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.para-quem-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body.dark-mode .para-quem-card {
    background-color: #0d1117;
    border: 1px solid #21262d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.para-quem-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F2937;
}

body.dark-mode .para-quem-card-title {
    color: #c9d1d9;
}

.para-quem-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

body.dark-mode .para-quem-card-text {
    color: #b1bac4;
}

/* ============================================
   SEÇÃO 6: EXEMPLOS REAIS
   ============================================ */

.exemplos-section {
    background-color: #FFFFFF;
}

body.dark-mode .exemplos-section {
    background-color: #0d1117;
}

.exemplos-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1F2937;
}

body.dark-mode .exemplos-title {
    color: #c9d1d9;
}

.exemplos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.exemplo-card {
    background-color: #F0F5FF;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #2262EC;
}

body.dark-mode .exemplo-card {
    background-color: #1f2937;
    border-left-color: #007D3F;
}

.exemplo-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F2937;
}

body.dark-mode .exemplo-card-title {
    color: #c9d1d9;
}

.exemplo-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

body.dark-mode .exemplo-card-text {
    color: #b1bac4;
}

.exemplo-card-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.exemplo-card-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #374151;
}

body.dark-mode .exemplo-card-list li {
    color: #b1bac4;
}

.exemplo-card-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2262EC;
    font-weight: bold;
}

body.dark-mode .exemplo-card-list li::before {
    color: #007D3F;
}

/* ============================================
   SEÇÃO 7: DIFERENCIAIS
   ============================================ */

.diferenciais-section {
    background-color: #F8F9FA;
}

body.dark-mode .diferenciais-section {
    background-color: #161b22;
}

.diferenciais-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1F2937;
}

body.dark-mode .diferenciais-title {
    color: #c9d1d9;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.diferencial-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body.dark-mode .diferencial-card {
    background-color: #0d1117;
    border: 1px solid #21262d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.diferencial-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1F2937;
}

body.dark-mode .diferencial-card-title {
    color: #c9d1d9;
}

.diferencial-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

body.dark-mode .diferencial-card-text {
    color: #b1bac4;
}

/* ============================================
   SEÇÃO 8: FAQ
   ============================================ */

.faq-section {
    background-color: #FFFFFF;
}

body.dark-mode .faq-section {
    background-color: #0d1117;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1F2937;
}

body.dark-mode .faq-title {
    color: #c9d1d9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

body.dark-mode .faq-item {
    border-color: #21262d;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: #F8F9FA;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

body.dark-mode .faq-question {
    background-color: #161b22;
    color: #c9d1d9;
}

.faq-question:hover {
    background-color: #E5E7EB;
}

body.dark-mode .faq-question:hover {
    background-color: #21262d;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: #2262EC;
    transition: transform 0.3s ease;
}

body.dark-mode .faq-question::after {
    color: #007D3F;
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    overflow: hidden;
    transition: padding 0.3s ease;
}

.collapse:not(.show) .faq-answer {
    padding: 0 20px;
}

.collapse.show .faq-answer {
    padding: 20px;
}

.faq-answer-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

body.dark-mode .faq-answer-text {
    color: #b1bac4;
}

/* ============================================
   SEÇÃO 9: CTA FINAL
   ============================================ */

.cta-final-section {
    background: linear-gradient(135deg, #2262EC 0%, #1E56D9 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

body.dark-mode .cta-final-section {
    background: linear-gradient(135deg, #007D3F 0%, #006a33 100%);
}

.cta-final-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .cta-final-title {
        font-size: 2rem;
    }
}

.cta-final-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #F3FCFF;
}

/* Melhorar contraste no tema light */
body:not(.dark-mode) .cta-final-text {
    color: #E0E7FF !important;
    font-weight: 500;
}

.cta-final-benefits {
    list-style: none;
    padding: 0;
    margin: 32px auto;
    max-width: 500px;
    text-align: left;
}

.cta-final-benefits li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #F3FCFF;
}

/* Melhorar contraste no tema light */
body:not(.dark-mode) .cta-final-benefits li {
    color: #E0E7FF !important;
    font-weight: 500;
}

.cta-final-benefits li::before {
    content: "✅ ";
    margin-right: 12px;
    font-size: 1.2rem;
}

.cta-final-button {
    padding: 16px 48px;
    font-size: 1.2rem;
    font-weight: 700;
    background-color: #FFFFFF;
    color: #2262EC;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 32px;
}

body.dark-mode .cta-final-button {
    background-color: #FFFFFF;
    color: #007D3F;
}

.cta-final-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-final-trust {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #E0E7FF;
    font-style: italic;
}

/* Melhorar contraste no tema light */
body:not(.dark-mode) .cta-final-trust {
    color: #C7D2FE !important;
    font-weight: 500;
}

body.dark-mode .cta-final-trust {
    color: #b1bac4;
}

/* ============================================
   RODAPÉ
   ============================================ */

.landing-footer {
    background-color: #1F2937;
    padding: 40px 0;
    text-align: center;
}

body.dark-mode .landing-footer {
    background-color: #010409;
}

.landing-footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.landing-footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

body.dark-mode .landing-footer-links a {
    color: #8b949e;
}

.landing-footer-links a:hover {
    color: #FFFFFF;
}

body.dark-mode .landing-footer-links a:hover {
    color: #007D3F;
}

.landing-footer-copyright {
    color: #6B7280;
    font-size: 0.9rem;
    margin-top: 16px;
}

/* Melhorar contraste no tema light */
body:not(.dark-mode) .landing-footer-copyright {
    color: #9CA3AF !important;
    font-weight: 500;
}

body.dark-mode .landing-footer-copyright {
    color: #8b949e;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   RESPONSIVIDADE ADICIONAL
   ============================================ */

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    .solucao-blocks,
    .como-funciona-steps,
    .para-quem-grid,
    .exemplos-grid,
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
}

