/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7fafd;
    color: #222;
    line-height: 1.6;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #1e40af;
}

.secao {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px 40px 20px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    font-weight: bold;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    transition: background 0.2s, color 0.2s;
}

.cta-button:hover {
    background: #2563eb;
    color: #fff;
}

.destaques {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.destaques h2 {
    font-size: x-large;
    font-weight: 800;
}

.destaques ul {
    list-style: disc inside;
    margin-top: 16px;
}

.destaques li {
    margin-bottom: 12px;
    font-size: 1.08rem;
}

.depoimentos {
    background: #e0e7ff;
    border-radius: 12px;
    margin: 32px 0;
    padding: 32px 24px;
    text-align: center;
}

.depoimentos blockquote {
    font-style: italic;
    font-size: 1.15rem;
    color: #374151;
}

.depoimentos cite {
    display: block;
    margin-top: 12px;
    font-size: 1rem;
    color: #2563eb;
}

.simulados-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}

.simulado-card {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 24px 20px;
    width: 260px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
    transition: box-shadow 0.2s, border 0.2s;
    text-align: left;
}

.simulado-card:hover {
    border: 1.5px solid #2563eb;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.simulado-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    color: #2563eb;
}

.simulado-card p {
    color: #374151;
    font-size: 1rem;
}

.cta-final {
    text-align: center;
    margin-top: 40px;
}

.cta-final h2 {
    margin-bottom: 18px;
}


.faq {
    background: #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    padding: 40px;

}

.faq center {
    background: #f1f5f9;
    border-radius: 10px;
    margin: 32px 0;
    padding: 32px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    margin-bottom: 18px;
}

.faq details {
    margin-bottom: 14px;
}

.faq summary {
    font-weight: bold;
    cursor: pointer;
    color: #2563eb;
    margin-bottom: 6px;
}

.faq p {
    margin-left: 18px;
    margin-top: 4px;
    color: #374151;
}

footer {
    text-align: center;
    padding: 24px 0 12px 0;
    color: #6b7280;
    font-size: 0.98rem;
    background: #e0e7ff;
    border-radius: 16px 16px 0 0;
    margin-top: 40px;
}

/* Responsividade */
@media (max-width: 700px) {
    .simulados-lista {
        flex-direction: column;
        align-items: center;
    }

    .simulado-card {
        width: 100%;
        max-width: 340px;
    }

    section {
        padding: 28px 8px;
    }

    .hero {
        padding: 40px 8px 28px 8px;
    }
}