/* ======================
   RESET / BASE
====================== */
* {
    box-sizing: border-box;
}

:root {
    --m3-blue: #0B5ED7;
    --m3-blue-dark: #094db2;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: radial-gradient(
        circle at top center,
        #ddeafe 0%,
        #f7f9fc 60%
    );
}

/* ======================
   HEADER (AZUL M3)
====================== */
.top-header {
    background: #305EA9;
}

.top-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.top-nav a {
    margin-left: 18px;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.95;
}

.top-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .top-header-inner {
        flex-direction: column;
        gap: 8px;
    }

    .top-nav a {
        margin-left: 0;
        margin-right: 12px;
    }
}

/* ======================
   CONTAINER (FORMULÁRIOS)
====================== */
.container {
    max-width: 780px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ======================
   CARD BASE (FORMULÁRIOS)
====================== */
.card {
    background: #fff;
    border-radius: 18px;
    padding: 48px;
    margin-bottom: 12px;
    box-shadow:
        0 12px 32px rgba(0,0,0,.08),
        0 4px 8px rgba(0,0,0,.04);
}

/* ======================
   TÍTULOS GLOBAIS
====================== */
h1 {
    text-align: center;
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--m3-blue);
    margin: 10px auto 0;
    border-radius: 2px;
}

h2 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

h3 {
    margin: 28px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.subtitle {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin: 12px auto 32px;
    line-height: 1.4;
}

/* ======================
   FORMULÁRIOS
====================== */
label {
    display: block;
    margin-top: 18px;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

input,
select {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    transition: all 0.15s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--m3-blue);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.18);
}

input[readonly],
select:disabled {
    background: #f3f4f6;
    color: #6b7280;
}

/* ======================
   BOTÕES (FORMULÁRIOS)
====================== */
button {
    width: 100%;
    margin-top: 26px;
    padding: 16px;
    background: linear-gradient(
        180deg,
        var(--m3-blue),
        var(--m3-blue-dark)
    );
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(11, 94, 215, 0.35);
}

button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* ======================
   FEEDBACK
====================== */
.loading {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.erro {
    margin-top: 14px;
    color: #dc2626;
    font-size: 14px;
    text-align: center;
}

/* ======================
   HOME (ISOLADA)
====================== */

.home-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

/* HERO */
.home-hero {
    background: #fff;
    border-radius: 20px;
    padding: 56px 48px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.home-hero h1 {
    font-size: 30px;
    margin-bottom: 14px;
}

.home-hero p {
    font-size: 16px;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* CTA HOME */
.home-cta {
    display: inline-block;
    padding: 18px 44px;
    background: linear-gradient(180deg, var(--m3-blue), var(--m3-blue-dark));
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(11,94,215,.45);
    transition: all .2s ease;
}

.home-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(11,94,215,.55);
}

/* GRID HOME */
.home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/* CARD HOME */
.home-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.home-card h2 {
    margin-bottom: 18px;
}

/* LISTA CHECK HOME */
.home-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-check li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
}

.home-check li::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--m3-blue);
    font-weight: bold;
}

/* PASSOS */
.home-steps li {
    margin-bottom: 14px;
    font-size: 15px;
}

/* MOBILE */
@media (max-width: 900px) {
    .home-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 40px 28px;
    }

    .card {
        padding: 24px;
    }
}
/* =========================================================
   HOME – REMOVE MARCADOR PADRÃO (?)
========================================================= */

.home-wrapper ul {
    list-style: none !important;
    padding-left: 0 !important;
}

.home-wrapper ul li::marker {
    content: "" !important;
}
/* =========================================================
   HOME – RESET TOTAL DE LISTAS (ANTI CSS LEGADO)
========================================================= */

/* Mata QUALQUER pseudo-elemento herdado */
.home-card li::before,
.home-card li::after {
    content: none !important;
}

/* Remove marcador padrão */
.home-card ul {
    list-style: none !important;
    padding-left: 0 !important;
}

/* CHECK APENAS NO CARD CERTO */
.home-check li {
    position: relative;
    padding-left: 28px;
}

.home-check li::before {
    content: "?" !important;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--m3-blue);
    font-weight: bold;
}
/* FAQ ocupa largura total */
.home-card-full {
    grid-column: 1 / -1;
}
/* ======================
   FAQ HOME
====================== */

.home-faq {
    padding: 44px;
}

.home-faq h2 {
    text-align: center;
    margin-bottom: 36px;
}

.faq-item {
    padding: 22px 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0B5ED7;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
    .home-faq {
        pad
/* ======================
   FOOTER
====================== */

.site-footer {
    background: #0f172a;
    color: #e5e7eb;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5f5;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a {
    color: #cbd5f5;
    text-decoration: none;
}

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

.footer-logo {
    height: 42px;
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 16px;
    font-size: 13px;
    color: #9ca3af;
}

/* MOBILE */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}