/* ===== RESET ===== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f8f9fb;
    color: #1f2937;
    line-height: 1.6;
}

/* ===== CONTAINER ===== */

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

/* ===== HEADER ===== */

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: #111827;
}

.hero p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* ===== CARDS ===== */

.card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card h2 {
    margin-bottom: 20px;
    color: #111827;
}

.card p {
    margin-bottom: 15px;
}

/* ===== LISTAS ===== */

.steps {
    list-style: none;
}

.steps li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.steps li:last-child {
    border-bottom: none;
}

/* ===== LINKS DOS FORMULÁRIOS ===== */

.form-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-links a {
    display: block;
    text-decoration: none;
    background: #f3f4f6;
    color: #111827;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.form-links a:hover {
    background: #e5e7eb;
}

/* ===== CHECKBOX ===== */

.confirmation {
    margin-top: 25px;
    margin-bottom: 25px;
}

.confirmation label {
    cursor: pointer;
}

/* ===== BOTÃO PRINCIPAL ===== */

.primary-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: #2563eb;
    color: white;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #1d4ed8;
}

/* ===== BOTÃO SECUNDÁRIO ===== */

.secondary-button {
    display: inline-block;
    text-decoration: none;
    background: #374151;
    color: white;
    padding: 14px 22px;
    border-radius: 10px;
    margin-top: 15px;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #1f2937;
}

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

footer {
    text-align: center;
    margin-top: 50px;
    color: #6b7280;
    font-size: 0.95rem;
}

footer p {
    margin-bottom: 8px;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 1.8rem;
    }

    .card {
        padding: 22px;
    }

}

.important-note {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 18px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.important-note strong {
    display: block;
    margin-bottom: 10px;
    color: #1e40af;
}

.important-note p {
    margin-bottom: 8px;
}

.important-note p:last-child {
    margin-bottom: 0;
}
