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

:root {
    --azul-escuro: #071829;
    --azul-medio: #0d2742;
    --azul-card: #102f4f;
    --azul-claro: #1d4ed8;
    --verde: #22c55e;
    --verde-hover: #16a34a;
    --fundo: #f4f7fb;
    --branco: #ffffff;
    --texto: #1f2937;
    --texto-claro: #dbeafe;
    --borda: #e5e7eb;
    --sombra: 0 8px 24px rgba(0,0,0,0.08);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--fundo);
    color: var(--texto);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
}

/* HEADER */

.site-header {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 14px 6%;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 14px rgba(0,0,0,0.22);
}

.header-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--branco);
    flex-shrink: 0;
}

.site-logo img {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    max-width: 56px;
    object-fit: cover;
    border-radius: 50%;
}

.site-logo strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    color: var(--branco);
}

.site-logo span {
    display: block;
    font-size: 13px;
    color: var(--texto-claro);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.main-nav a {
    color: var(--branco);
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #93c5fd;
}

.nav-whatsapp {
    background: var(--verde);
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--branco) !important;
}

.nav-whatsapp:hover {
    background: var(--verde-hover);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--branco);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.dropdown-menu a {
    display: block;
    color: var(--azul-escuro);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #eef4fb;
    color: var(--azul-claro);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.menu-toggle {
    display: none;
    background: var(--azul-medio);
    color: var(--branco);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 22px;
    cursor: pointer;
}

/* HERO */

.hero {
    background: linear-gradient(135deg, var(--azul-escuro), var(--azul-medio));
    color: var(--branco);
    padding: 80px 6%;
}

.hero-content,
.hero .container {
    max-width: 1150px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero p {
    font-size: 18px;
    color: var(--texto-claro);
    max-width: 850px;
    margin-bottom: 28px;
}

.tag,
.badge {
    display: inline-block;
    background: var(--azul-claro);
    color: var(--branco);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 18px;
}

/* BOTÕES */

.btn {
    display: inline-block;
    background: var(--verde);
    color: var(--branco);
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s;
}

.btn:hover {
    background: var(--verde-hover);
    transform: translateY(-1px);
}

/* SEÇÕES */

.section {
    padding: 60px 6%;
}

.section-white {
    background: var(--branco);
}

.section-alt {
    background: #eef4fb;
}

.section h2 {
    font-size: 32px;
    color: var(--azul-escuro);
    margin-bottom: 18px;
}

.section p {
    margin-bottom: 12px;
}

/* GRIDS */

.grid,
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* CARDS */

.card {
    background: var(--branco);
    padding: 26px;
    border-radius: 14px;
    box-shadow: var(--sombra);
}

.card h3 {
    color: var(--azul-medio);
    margin-bottom: 10px;
}

.card p {
    color: #374151;
}

.card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--azul-claro);
    font-weight: bold;
}

.card a:hover {
    text-decoration: underline;
}

/* PASSOS */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.step {
    background: var(--branco);
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--sombra);
}

.step span {
    display: inline-block;
    background: var(--azul-escuro);
    color: var(--branco);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 36px;
    font-weight: bold;
    margin-bottom: 12px;
}

.step h3 {
    color: var(--azul-medio);
    margin-bottom: 8px;
}

/* FAQ */

.faq {
    margin-top: 25px;
}

.faq-item {
    background: var(--branco);
    margin-bottom: 14px;
    padding: 22px;
    border-radius: 12px;
    box-shadow: var(--sombra);
}

.faq-item h3 {
    color: var(--azul-escuro);
    margin-bottom: 8px;
}

/* DESTAQUES */

.highlight {
    background: #eaf2ff;
    border-left: 5px solid var(--azul-claro);
    padding: 24px;
    border-radius: 12px;
    margin-top: 30px;
}

.highlight-yellow {
    background: #fff3cd;
    border-left-color: #f59e0b;
}

.highlight-red {
    background: #fee2e2;
    border-left-color: #dc2626;
}

/* CTA */

.cta {
    background: var(--azul-escuro);
    color: var(--branco);
    text-align: center;
    padding: 60px 6%;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 14px;
}

.cta p {
    color: var(--texto-claro);
    max-width: 850px;
    margin: 0 auto 25px auto;
}

/* FOOTER */

footer {
    background: #061322;
    color: #cbd5e1;
    text-align: center;
    padding: 32px 6%;
    font-size: 14px;
}

footer a {
    color: #dbeafe;
}

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

/* RESPONSIVO */

@media (max-width: 1050px) {
    .header-container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-top: 14px;
    }

    body.menu-open .main-nav {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 11px 0;
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        display: block;
        position: static;
        background: rgba(255,255,255,0.06);
        box-shadow: none;
        border-radius: 8px;
        padding: 6px 12px;
    }

    .dropdown-menu a {
        color: #dbeafe;
        border-top: none;
        padding: 8px 0;
    }

    .dropdown-menu a:hover {
        background: transparent;
        color: #93c5fd;
    }

    .nav-whatsapp {
        text-align: center;
        margin-top: 10px;
        padding: 12px;
    }
}

@media (max-width: 900px) {
    .grid,
    .cards-grid,
    .grid-2,
    .grid-4,
    .steps {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 6%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section h2,
    .cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 12px 5%;
    }

    .site-logo img {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px;
        max-width: 46px;
    }

    .site-logo strong {
        font-size: 16px;
    }

    .site-logo span {
        font-size: 12px;
    }

    .hero,
    .section,
    .cta {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero h1 {
        font-size: 29px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
/* FOOTER PROFISSIONAL */

.site-footer {
    background: #061322;
    color: #cbd5e1;
    padding: 55px 6% 25px;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 35px;
    text-align: left;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #dbeafe;
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1150px;
    margin: 35px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* HERO PREMIUM */

.hero {
    padding: 85px 6%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-benefits {
    display: grid;
    gap: 8px;
    margin: 22px 0;
    color: #dbeafe;
    font-size: 15px;
}

.hero-benefits span {
    display: block;
}

.hero-box {
    background: #ffffff;
    color: #1f2937;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.hero-box h2 {
    color: #081a2f;
    font-size: 24px;
    margin-bottom: 12px;
}

.hero-box p {
    color: #374151;
    font-size: 15px;
    margin-bottom: 14px;
}

.hero-rating {
    background: #eef4fb;
    padding: 14px;
    border-radius: 12px;
    margin-top: 18px;
    font-weight: bold;
    color: #081a2f;
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
}
/* Ajustes de páginas institucionais e WhatsApp flutuante */
.conteudo-texto {
    max-width: 980px;
}

.conteudo-texto h2 {
    margin-top: 28px;
    margin-bottom: 10px;
}

.conteudo-texto h2:first-child {
    margin-top: 0;
}

.conteudo-texto p {
    font-size: 17px;
    color: #374151;
    margin-bottom: 14px;
}

.conteudo-texto a {
    color: var(--azul-claro);
    font-weight: bold;
}

.botao-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--verde);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    z-index: 998;
}

.botao-whatsapp:hover {
    background: var(--verde-hover);
    transform: translateY(-1px);
}
