/* =========================
   VARIÁVEIS GLOBAIS
========================= */
:root {
    --azul: #1e4fd8;
    --verde: #2fbf71;
    --laranja: #ff8c1a;
    --cinza-escuro: #1f2937;
    --cinza-claro: #f4f6f8;
}

/* =========================
   RESET E BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--cinza-escuro);
    line-height: 1.6;
}

/* =========================
   CONTAINER PADRÃO
========================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   TOPO / MENU
========================= */
.topo {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04); /* mais peso visual */
}

.topo-interno {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0; /* mais respiro */
}

.logo img {
    height: 64px; /* logo mais presente */
}

.menu {
    display: flex;
    gap: 32px;
}

.menu a {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--azul);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.cta-topo a {
    background-color: var(--laranja);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 120px 0 96px 0; /* mais respiro no topo */
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.hero-interno {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* texto ganha mais espaço */
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--azul);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7;
}

.hero img {
    max-width: 100%;
}

/* =========================
   BOTÕES
========================= */
.cta-principal {
    background-color: var(--laranja);
    color: #ffffff;
    padding: 16px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-principal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 26, 0.35);
}

.cta-secundario {
    background-color: var(--verde);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* =========================
   SEÇÕES
========================= */
section {
    padding: 72px 0;
}

.publico h2,
.beneficios h2 {
    text-align: center;
    color: var(--azul);
    margin-bottom: 32px;
}

/* =========================
   LISTA PÚBLICO
========================= */
.lista-publico {
    max-width: 720px;
    margin: 0 auto 40px auto;
    list-style: none;
}

.lista-publico li {
    padding: 18px 0 18px 32px;
    font-size: 1.1rem;
    position: relative;
}

.lista-publico li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 18px;
    color: var(--verde);
    font-weight: bold;
    font-size: 1.2rem;
}

/* =========================
   BENEFÍCIOS / CARDS
========================= */
.beneficios {
    background-color: var(--cinza-claro);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card h3 {
    color: var(--azul);
    margin-bottom: 12px;
}

/* =========================
   TEXTO INSTITUCIONAL
========================= */
section h1 {
    color: var(--azul);
    margin-bottom: 24px;
}

section h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

section p {
    margin-bottom: 16px;
}

section ul {
    margin-left: 20px;
}

section ul li {
    margin-bottom: 8px;
}

/* =========================
   CTA FINAL
========================= */
.cta-final {
    text-align: center;
}

.cta-final p {
    font-size: 1.15rem;
    margin-bottom: 24px;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0f172a;
    color: #ffffff;
    text-align: center;
    padding: 40px 24px;
}

footer img {
    height: 48px;
    margin-bottom: 16px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {

    .menu {
        display: none;
    }

    .hero-interno {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        max-width: 100%;
    }
}
