/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* ========================================
   TIPOGRAFIA
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 15px;
}

/* ========================================
   BOTÕES
======================================== */

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    margin: 10px 5px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background-color: #25D366;
    color: white;
}

.btn-secondary:hover {
    background-color: #128C7E;
}

.btn-primary-white {
    background-color: white;
    color: #1E6C93;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: #1E6C93;
}

/* ========================================
   SEÇÕES GERAIS
======================================== */

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1E6C93;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

/* ========================================
   HERO SECTION
======================================== */

#hero {
    background: linear-gradient(135deg, #1E6C93 0%, #2980b9 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-bottom: 30px;
}

.hero-disclaimer {
    font-size: 16px;
    opacity: 0.9;
}

/* ========================================
   PROBLEMAS SECTION
======================================== */

#problemas {
    background-color: #f8f9fa;
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problema-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problema-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.problema-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.problema-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1E6C93;
}

.problema-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   SOLUÇÃO SECTION
======================================== */

#solucao {
    background-color: white;
}

.comparacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.comparacao-card {
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparacao-card.errado {
    background-color: #fff5f5;
    border: 2px solid #e53e3e;
}

.comparacao-card.certo {
    background-color: #f0fff4;
    border: 2px solid #38a169;
}

.comparacao-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.comparacao-card ul {
    list-style: none;
}

.comparacao-card li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 10px;
    line-height: 1.6;
}

.solucao-cta {
    text-align: center;
    margin-top: 60px;
}

.destaque-text {
    font-size: 24px;
    font-weight: 700;
    color: #1E6C93;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* ========================================
   5 PASSOS SECTION
======================================== */

#passos {
    background-color: #f8f9fa;
}

.passos-container {
    max-width: 900px;
    margin: 50px auto;
}

.passo {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.passo:hover {
    transform: translateX(10px);
}

.passo-numero {
    font-size: 48px;
    font-weight: 900;
    color: #1E6C93;
    margin-right: 25px;
    min-width: 70px;
    text-align: center;
}

.passo h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1E6C93;
}

.passo p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.passos-cta {
    text-align: center;
    margin-top: 50px;
}

.texto-apoio {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

/* ========================================
   RECURSOS SECTION
======================================== */

#recursos {
    background-color: white;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.recurso-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.recurso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #1E6C93;
}

.recurso-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.recurso-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1E6C93;
}

.recurso-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   FAQ SECTION
======================================== */

#faq {
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #1E6C93;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-toggle {
    font-size: 30px;
    font-weight: 300;
    color: #1E6C93;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.faq-cta p {
    font-size: 20px;
    font-weight: 700;
    color: #1E6C93;
    margin-bottom: 20px;
}

/* ========================================
   CTA FINAL SECTION
======================================== */

#cta-final {
    background-color: #1E6C93;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-final-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-price {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 15px;
}

.cta-disclaimer {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ========================================
   FOOTER
======================================== */

#footer {
    background-color: #1E6C93;
    color: white;
    padding: 60px 20px 30px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8d4e3;
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVIDADE - TABLET
======================================== */

@media (max-width: 768px) {
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    /* Hero */
    #hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    /* Botões */
    .btn {
        padding: 15px 30px;
        font-size: 16px;
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
    }
    
    /* Problemas */
    .problemas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Comparação */
    .comparacao-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Passos */
    .passo {
        flex-direction: column;
        text-align: center;
    }
    
    .passo-numero {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* Recursos */
    .recursos-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Final */
    .cta-final-content h2 {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-price {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========================================
   RESPONSIVIDADE - MOBILE
======================================== */

@media (max-width: 480px) {
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-disclaimer {
        font-size: 14px;
    }
    
    .problema-icon,
    .recurso-icon {
        font-size: 50px;
    }
    
    .passo-numero {
        font-size: 36px;
    }
    
    .passo h3 {
        font-size: 20px;
    }
    
    .passo p {
        font-size: 16px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .cta-final-content h2 {
        font-size: 26px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-price {
        font-size: 22px;
    }
    
    .cta-disclaimer {
        font-size: 14px;
    }
}
/* ========================================
   BOTÕES DUPLOS (CTA SECTIONS)
======================================== */

.section-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.solucao-cta {
    text-align: center;
    margin-top: 60px;
}

.solucao-cta .destaque-text {
    margin-bottom: 30px;
}

.solucao-cta .btn {
    margin: 10px 5px;
}

.passos-cta {
    text-align: center;
    margin-top: 50px;
}

.passos-cta .btn {
    margin: 10px 5px;
}

.passo-content {
    flex: 1;
}

/* ========================================
   RESPONSIVIDADE DOS BOTÕES DUPLOS
======================================== */

@media (max-width: 768px) {
    .section-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-cta .btn {
        width: 100%;
        max-width: 400px;
    }
    
    .solucao-cta .btn {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
    }
    
    .passos-cta .btn {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
    }
}

