/* -----------------------------------------------  
   RESET + BASE  
------------------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f5f6fa;
    color: #222;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

.wrapper {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

h3 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* -----------------------------------------------  
   TOPO  
------------------------------------------------ */
.topbar {
    background: #0d47a1;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}

.topbar .wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icone-top {
    width: 18px;
    filter: brightness(100);
}

/* -----------------------------------------------  
   HERO  
------------------------------------------------ */
.hero {
    padding: 40px 0 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Barra de segurança */
.security-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.security-bar .tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e8f5ff;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.security-bar img {
    width: 18px;
}

/* Títulos */
.title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.subtitle {
    color: #555;
    margin-bottom: 30px;
}

/* Etapas */
.steps {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
}

.step .circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-weight: 600;
}

.step.active .circle {
    border-color: #0d47a1;
    background: #0d47a1;
    color: #fff;
}

.step.done .circle {
    border-color: #28a745;
    background: #28a745;
    color: #fff;
}

.step.active,
.step.done {
    color: #000;
}

/* -----------------------------------------------  
   BOX DE DADOS  
------------------------------------------------ */
.box-dados {
    background: #fff;
    width: 100%;
    max-width: 700px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.box-dados h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-dados small {
    color: #666;
}

.icone-label {
    width: 22px;
}

.linha {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 15px 0;
}

.campo {
    margin-bottom: 15px;
}

.campo-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.92rem;
}

.campo-valor {
    margin-left: 30px;
    font-size: 1rem;
    color: #111;
    margin-top: 3px;
}

/* Mini info */
.mini-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

/* -----------------------------------------------  
   BENEFÍCIOS  
------------------------------------------------ */
.beneficios {
    padding: 50px 0;
    background: #fff;
}

.cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #f9fafc;
    padding: 25px;
    width: 280px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.card img {
    width: 55px;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.9rem;
    color: #555;
}

/* -----------------------------------------------  
   ENTREGÁVEIS  
------------------------------------------------ */
.entregaveis {
    padding: 40px 0;
}

.lista-beneficios {
    list-style: none;
    margin-top: 20px;
    text-align: center;
}

.lista-beneficios li {
    margin: 8px 0;
    font-size: 1rem;
}

/* -----------------------------------------------  
   COMO FUNCIONA  
------------------------------------------------ */
.como-funciona {
    padding: 45px 0;
    background: #fff;
}

.passos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.passo {
    text-align: center;
    width: 220px;
}

.num {
    font-size: 2rem;
    font-weight: 700;
    color: #0d47a1;
}

/* -----------------------------------------------  
   TABELA GOV  
------------------------------------------------ */
.tabela-gov {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.linha-gov {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.tit-gov {
    font-weight: 600;
}

.table-responsive {
    overflow-x: auto;
    margin: 15px 0;
}

.tabela-prod-gov {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.tabela-prod-gov th {
    background: #0d47a1;
    color: #fff;
    padding: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.tabela-prod-gov td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.botao-centro {
    text-align: center;
    margin-top: 20px;
}

.btn-primario {
    display: inline-block;
    background: #0d47a1;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primario:hover {
    background: #094977;
}

.grande {
    font-size: 1.1rem;
}

/* -----------------------------------------------  
   FAQ  
------------------------------------------------ */
.faq {
    padding: 50px 0;
}

.faq-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    margin-bottom: 5px;
}

/* -----------------------------------------------  
   RODAPÉ  
------------------------------------------------ */
.rodape {
    background: #0d47a1;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* -----------------------------------------------  
   AJUSTES RESPONSIVOS (MOBILE FIX)
------------------------------------------------ */

@media (max-width: 768px) {

    /* Ícones grandes */
    .icone-label,
    .security-bar img,
    .card img,
    .icone-top {
        width: 20px;
        max-width: 20px;
    }

    /* Ajustando cards dos benefícios */
    .card {
        width: 100%;
        padding: 20px;
    }

    /* Como funciona — números */
    .num {
        font-size: 1.6rem !important;
    }

    .passos {
        gap: 20px !important;
    }

    .passo {
        width: 100% !important;
    }

    /* FAQ — box voltando ao normal */
    .faq-item {
        padding: 18px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    /* Wrapper para não estourar lateral */
    .wrapper {
        width: 92%;
    }

    /* Steps mais compactos */
    .steps {
        gap: 10px;
    }

    .step .circle {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    /* Box de dados mais ajustado */
    .box-dados {
        padding: 18px;
    }

    .campo-valor {
        margin-left: 20px;
    }
}

