:root {
    --cor-principal: #16a34a;
    --cor-principal-escura: #15803d;
    --cor-texto: #111827;
    --cor-texto-suave: #6b7280;
    --cor-fundo: #f3f4f6;
    --cor-branco: #ffffff;
    --cor-borda: #e5e7eb;
    --cor-escura: #0f172a;
    --sombra: 0 12px 32px rgba(15, 23, 42, 0.08);
    --raio: 20px;
    --largura: 1120px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cor-fundo);
    color: var(--cor-texto);
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--cor-borda);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header-inner {
    width: 100%;
    max-width: var(--largura);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
}

.site-logo span {
    font-size: 20px;
    font-weight: 800;
    color: #12351f;
    line-height: 1.1;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-menu a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.site-menu a:hover,
.site-menu a.ativo {
    color: var(--cor-principal);
}

.site-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 70px 20px;
}

.site-container {
    width: 100%;
    max-width: var(--largura);
    margin: 0 auto;
    padding: 42px 20px;
}

.site-hero-inner {
    width: 100%;
    max-width: var(--largura);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.site-hero h1 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.1;
}

.site-hero p {
    font-size: 19px;
    line-height: 1.6;
    color: #dbeafe;
    margin: 0 0 28px;
}

.site-btn {
    display: inline-block;
    background: var(--cor-principal);
    color: #fff;
    text-decoration: none;
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 800;
}

.site-btn:hover {
    background: var(--cor-principal-escura);
}

.site-card {
    background: #fff;
    border-radius: var(--raio);
    box-shadow: var(--sombra);
    overflow: hidden;
}

.site-footer {
    background: #111827;
    color: #cbd5e1;
    padding: 36px 20px;
    margin-top: 40px;
}

.site-footer-inner {
    width: 100%;
    max-width: var(--largura);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.site-footer strong {
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
}

.site-footer p {
    margin: 0;
    line-height: 1.5;
}

.site-footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.site-footer-links a:hover {
    color: #86efac;
}

.bloco-monetizacao {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}

.bloco-monetizacao-inner {
    min-height: 110px;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 13px;
}

@media (max-width: 850px) {
    .site-header-inner,
    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-menu {
        gap: 12px;
    }

    .site-hero-inner {
        grid-template-columns: 1fr;
    }

    .site-hero h1 {
        font-size: 34px;
    }

    .site-hero p {
        font-size: 17px;
    }

    .site-footer-links {
        justify-content: flex-start;
    }
}
/*MENU*/
.site-header {
    overflow: visible;
}

.site-header-inner {
    overflow: visible;
}

.site-menu {
    overflow: visible;
}

.site-menu-dropdown {
    position: relative;
}

.site-menu-dropdown summary {
    list-style: none;
    cursor: pointer;
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    user-select: none;
}

.site-menu-dropdown summary::-webkit-details-marker {
    display: none;
}

.site-menu-dropdown summary::after {
    content: "▾";
    font-size: 11px;
    margin-left: 6px;
}

.site-menu-dropdown:hover summary,
.site-menu-dropdown.ativo summary,
.site-menu-dropdown[open] summary {
    color: var(--cor-principal);
}

.site-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--cor-borda);
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
    padding: 10px;
    z-index: 100;
}

.site-submenu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid var(--cor-borda);
    border-top: 1px solid var(--cor-borda);
    transform: translateX(-50%) rotate(45deg);
}

.site-menu-dropdown[open] .site-submenu,
.site-menu-dropdown:hover .site-submenu {
    display: block;
}

.site-submenu a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: #374151;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.site-submenu a:hover,
.site-submenu a.ativo {
    background: #dcfce7;
    color: #166534;
}

@media (max-width: 850px) {
    .site-menu-dropdown {
        width: 100%;
    }

    .site-menu-dropdown summary {
        display: inline-block;
    }

    .site-submenu {
        position: static;
        transform: none;
        min-width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border-radius: 14px;
    }

    .site-submenu::before {
        display: none;
    }

    .site-submenu a {
        white-space: normal;
    }
}

/*HOME*/
.home-hero-logo {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 22px;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    background: #fff;
}

.home-hero-acoes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-btn-secundario {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
}

.site-btn-secundario:hover {
    background: rgba(255,255,255,0.2);
}

.home-hero-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.home-hero-card strong {
    display: block;
    font-size: 34px;
    color: #86efac;
    margin-bottom: 12px;
}

.home-hero-card span {
    display: block;
    color: #dbeafe;
    line-height: 1.6;
    font-size: 17px;
}

.home-intro {
    background: #fff;
    border-radius: var(--raio);
    box-shadow: var(--sombra);
    padding: 30px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 34px;
}

.home-etiqueta,
.home-categoria {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.home-intro h2,
.home-secao-topo h2 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.15;
}

.home-intro p,
.home-secao-topo p {
    margin: 0;
    color: var(--cor-texto-suave);
    line-height: 1.7;
}

.home-secao-topo {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
}

.home-link {
    color: var(--cor-principal);
    font-weight: 800;
    text-decoration: none;
}

.home-grid-publicacoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-card-publicacao {
    background: #fff;
    border-radius: var(--raio);
    box-shadow: var(--sombra);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-card-imagem {
    display: block;
    width: 100%;
    height: 210px;
    background: #e5e7eb;
    overflow: hidden;
    text-decoration: none;
}

.home-card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-card-sem-imagem {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    padding: 20px;
    text-align: center;
}

.home-card-conteudo {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-card-conteudo h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
}

.home-card-conteudo h3 a {
    color: var(--cor-texto);
    text-decoration: none;
}

.home-card-conteudo h3 a:hover {
    color: var(--cor-principal);
}

.home-card-conteudo p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.home-meta {
    font-size: 13px;
    color: var(--cor-texto-suave);
    margin-bottom: 18px;
}

.home-vazio {
    padding: 30px;
    text-align: center;
    color: var(--cor-texto-suave);
}

@media (max-width: 950px) {
    .home-grid-publicacoes {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .home-grid-publicacoes {
        grid-template-columns: 1fr;
    }

    .home-secao-topo {
        display: block;
    }

    .home-link {
        display: inline-block;
        margin-top: 14px;
    }

    .home-hero-logo {
        width: 160px;
    }

    .home-hero-card strong {
        font-size: 28px;
    }
}

/*BLOG*/
.blog-hero {
    padding: 56px 20px;
    text-align: center;
}

.blog-hero-inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.blog-etiqueta {
    display: inline-block;
    background: rgba(220, 252, 231, 0.12);
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.22);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.blog-filtros {
    padding: 24px;
    margin-bottom: 22px;
}

.blog-form-busca {
    display: flex;
    gap: 12px;
}

.blog-form-busca input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    outline: none;
}

.blog-form-busca input:focus {
    border-color: var(--cor-principal);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.blog-form-busca button,
.blog-btn-limpar {
    border: 0;
    background: var(--cor-principal);
    color: #fff;
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    font-size: 15px;
}

.blog-form-busca button:hover {
    background: var(--cor-principal-escura);
}

.blog-btn-limpar {
    background: #6b7280;
}

.blog-resultado {
    margin-top: 14px;
    color: var(--cor-texto-suave);
    font-size: 14px;
}

.blog-categorias {
    padding: 22px 24px;
    margin-bottom: 30px;
}

.blog-categorias strong {
    display: block;
    margin-bottom: 13px;
    color: #374151;
}

.blog-categorias-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-categoria-btn {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 9px 13px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid #e5e7eb;
}

.blog-categoria-btn:hover,
.blog-categoria-btn.ativo {
    background: var(--cor-principal);
    color: #fff;
    border-color: var(--cor-principal);
}

.blog-grid-publicacoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card-publicacao {
    background: #fff;
    border-radius: var(--raio);
    box-shadow: var(--sombra);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card-imagem {
    display: block;
    width: 100%;
    height: 210px;
    background: #e5e7eb;
    overflow: hidden;
    text-decoration: none;
}

.blog-card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-sem-imagem {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    padding: 20px;
    text-align: center;
}

.blog-card-conteudo {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-categoria {
    display: inline-block;
    align-self: flex-start;
    background: #dcfce7;
    color: #166534;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.blog-card-conteudo h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
}

.blog-card-conteudo h2 a {
    color: var(--cor-texto);
    text-decoration: none;
}

.blog-card-conteudo h2 a:hover {
    color: var(--cor-principal);
}

.blog-card-conteudo p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.blog-meta {
    font-size: 13px;
    color: var(--cor-texto-suave);
    margin-bottom: 18px;
}

.blog-vazio {
    padding: 30px;
    text-align: center;
    color: var(--cor-texto-suave);
}

.blog-anuncio-grid {
    grid-column: 1 / -1;
}

.blog-paginacao {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.blog-paginacao a,
.blog-paginacao span {
    min-width: 42px;
    text-align: center;
    padding: 10px 13px;
    border-radius: 10px;
    background: #fff;
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.blog-paginacao a:hover,
.blog-paginacao .ativo {
    background: var(--cor-principal);
    color: #fff;
}

.blog-paginacao .desativado {
    color: #9ca3af;
    box-shadow: none;
}

@media (max-width: 950px) {
    .blog-grid-publicacoes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .blog-grid-publicacoes {
        grid-template-columns: 1fr;
    }

    .blog-form-busca {
        flex-direction: column;
    }

    .blog-form-busca button,
    .blog-btn-limpar {
        width: 100%;
        text-align: center;
    }
}

/*ARTIGO*/
.artigo-hero {
    padding: 58px 20px;
}

.artigo-hero-inner {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.artigo-categoria {
    display: inline-block;
    background: rgba(220, 252, 231, 0.12);
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.22);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
    text-decoration: none;
}

.artigo-categoria:hover {
    background: rgba(220, 252, 231, 0.2);
}

.artigo-hero h1 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.12;
}

.artigo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: #dbeafe;
    font-size: 15px;
}

.artigo-container {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 42px 20px;
}

.artigo-imagem-capa {
    margin: 0 0 28px;
}

.artigo-imagem-capa img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--sombra);
    display: block;
}

.artigo-imagem-capa figcaption {
    color: var(--cor-texto-suave);
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}

.artigo-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--sombra);
    padding: 38px;
}

.artigo-resumo {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--cor-borda);
}

.artigo-texto {
    font-size: 18px;
    line-height: 1.9;
    color: #1f2937;
}

.artigo-texto p {
    margin-top: 0;
    margin-bottom: 22px;
}

.artigo-texto a {
    color: var(--cor-principal);
    font-weight: 800;
}

.artigo-tags {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--cor-borda);
    color: var(--cor-texto-suave);
    font-size: 14px;
    line-height: 1.6;
}

.artigo-tags strong {
    color: var(--cor-texto);
}

.artigo-acoes {
    margin-top: 28px;
}

.artigo-relacionados {
    margin-top: 44px;
}

.artigo-relacionados-topo {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
}

.artigo-relacionados-topo h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.artigo-relacionados-topo p {
    margin: 0;
    color: var(--cor-texto-suave);
    line-height: 1.6;
}

.artigo-link {
    color: var(--cor-principal);
    font-weight: 800;
    text-decoration: none;
}

.artigo-relacionados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.artigo-card-relacionado {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--sombra);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.artigo-card-imagem {
    display: block;
    width: 100%;
    height: 160px;
    background: #e5e7eb;
    overflow: hidden;
    text-decoration: none;
}

.artigo-card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artigo-card-sem-imagem {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    padding: 16px;
    text-align: center;
}

.artigo-card-conteudo {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.artigo-card-conteudo span {
    display: inline-block;
    align-self: flex-start;
    background: #dcfce7;
    color: #166534;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.artigo-card-conteudo h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.25;
}

.artigo-card-conteudo h3 a {
    color: var(--cor-texto);
    text-decoration: none;
}

.artigo-card-conteudo h3 a:hover {
    color: var(--cor-principal);
}

.artigo-card-conteudo p {
    color: #4b5563;
    line-height: 1.55;
    margin: 0;
    font-size: 15px;
}

@media (max-width: 900px) {
    .artigo-hero h1 {
        font-size: 36px;
    }

    .artigo-relacionados-grid {
        grid-template-columns: 1fr;
    }

    .artigo-relacionados-topo {
        display: block;
    }

    .artigo-link {
        display: inline-block;
        margin-top: 14px;
    }
}

@media (max-width: 650px) {
    .artigo-hero {
        padding: 46px 20px;
    }

    .artigo-hero h1 {
        font-size: 31px;
    }

    .artigo-box {
        padding: 26px;
        border-radius: 20px;
    }

    .artigo-resumo {
        font-size: 18px;
    }

    .artigo-texto {
        font-size: 17px;
    }

    .artigo-imagem-capa img {
        border-radius: 20px;
    }
}

/*SOBRE*/
.sobre-hero {
    padding: 58px 20px;
    text-align: center;
}

.sobre-hero-inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.sobre-etiqueta {
    display: inline-block;
    background: rgba(220, 252, 231, 0.12);
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.22);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.sobre-hero h1 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.12;
}

.sobre-hero p {
    max-width: 740px;
    margin: 0 auto;
}

.sobre-container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 42px 20px;
}

.sobre-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--sombra);
    padding: 38px;
    margin-bottom: 28px;
}

.sobre-logo-area {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.sobre-logo {
    width: 190px;
    max-width: 100%;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.sobre-etiqueta-verde {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.sobre-logo-area h2,
.sobre-missao h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.18;
}

.sobre-texto {
    font-size: 18px;
    line-height: 1.85;
    color: #1f2937;
}

.sobre-texto p {
    margin-top: 0;
    margin-bottom: 20px;
}

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

.sobre-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--sombra);
    padding: 26px;
}

.sobre-card strong {
    display: block;
    color: var(--cor-principal);
    font-size: 21px;
    margin-bottom: 10px;
}

.sobre-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.65;
}

.sobre-missao {
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    border: 1px solid #dcfce7;
    border-radius: 24px;
    box-shadow: var(--sombra);
    padding: 34px;
}

.sobre-missao p {
    color: #4b5563;
    line-height: 1.75;
    font-size: 17px;
    margin: 18px 0 0;
}

.sobre-missao .site-btn {
    margin-top: 24px;
}

@media (max-width: 850px) {
    .sobre-hero h1 {
        font-size: 36px;
    }

    .sobre-logo-area {
        grid-template-columns: 1fr;
    }

    .sobre-cards {
        grid-template-columns: 1fr;
    }

    .sobre-logo {
        width: 170px;
    }
}

@media (max-width: 650px) {
    .sobre-hero {
        padding: 46px 20px;
    }

    .sobre-hero h1 {
        font-size: 31px;
    }

    .sobre-box,
    .sobre-missao {
        padding: 26px;
        border-radius: 20px;
    }

    .sobre-logo-area h2,
    .sobre-missao h2 {
        font-size: 26px;
    }

    .sobre-texto {
        font-size: 17px;
    }
}

/*CONTATO*/
.contato-hero {
    padding: 58px 20px;
    text-align: center;
}

.contato-hero-inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.contato-etiqueta {
    display: inline-block;
    background: rgba(220, 252, 231, 0.12);
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.22);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.contato-hero h1 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.12;
}

.contato-hero p {
    max-width: 700px;
    margin: 0 auto;
}

.contato-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 42px 20px;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 26px;
    align-items: flex-start;
}

.contato-form-box,
.contato-info-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--sombra);
    padding: 34px;
}

.contato-etiqueta-verde {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.contato-form-box h2,
.contato-info-box h2 {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.18;
}

.contato-form label {
    display: block;
    font-weight: 800;
    color: #374151;
    margin-bottom: 7px;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    margin-bottom: 17px;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: var(--cor-principal);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.contato-form textarea {
    min-height: 170px;
    resize: vertical;
}

.campo-oculto {
    display: none;
}

.contato-msg-erro {
    background: #fee2e2;
    color: #991b1b;
    padding: 13px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid #fecaca;
}

.contato-msg-sucesso {
    background: #dcfce7;
    color: #166534;
    padding: 13px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid #bbf7d0;
}

.contato-info-box p {
    color: #4b5563;
    line-height: 1.7;
    margin-top: 0;
}

.contato-info-item {
    background: #f9fafb;
    border: 1px solid var(--cor-borda);
    border-radius: 18px;
    padding: 18px;
    margin-top: 16px;
}

.contato-info-item strong {
    display: block;
    color: var(--cor-principal);
    margin-bottom: 7px;
    font-size: 17px;
}

.contato-info-item span,
.contato-info-item a {
    display: block;
    color: #4b5563;
    line-height: 1.55;
    text-decoration: none;
}

.contato-info-item a:hover {
    color: var(--cor-principal);
}

.contato-whatsapp {
    margin-top: 20px;
}

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

    .contato-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 650px) {
    .contato-hero {
        padding: 46px 20px;
    }

    .contato-hero h1 {
        font-size: 31px;
    }

    .contato-form-box,
    .contato-info-box {
        padding: 26px;
        border-radius: 20px;
    }

    .contato-form-box h2,
    .contato-info-box h2 {
        font-size: 26px;
    }
}

/*TERMOS DE USO*/
.legal-hero {
    padding: 58px 20px;
    text-align: center;
}

.legal-hero-inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.legal-etiqueta {
    display: inline-block;
    background: rgba(220, 252, 231, 0.12);
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.22);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.legal-hero h1 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.12;
}

.legal-hero p {
    max-width: 760px;
    margin: 0 auto;
}

.legal-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 42px 20px;
}

.legal-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--sombra);
    padding: 38px;
}

.legal-aviso {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 26px;
    font-weight: 700;
}

.legal-conteudo {
    font-size: 17px;
    line-height: 1.85;
    color: #1f2937;
}

.legal-conteudo h2 {
    margin-top: 34px;
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.25;
    color: var(--cor-texto);
}

.legal-conteudo p {
    margin-top: 0;
    margin-bottom: 18px;
}

.legal-conteudo ul {
    padding-left: 22px;
    margin-top: 0;
    margin-bottom: 22px;
}

.legal-conteudo li {
    margin-bottom: 8px;
}

.legal-conteudo a {
    color: var(--cor-principal);
    font-weight: 800;
    text-decoration: none;
}

.legal-conteudo a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .legal-hero {
        padding: 46px 20px;
    }

    .legal-hero h1 {
        font-size: 31px;
    }

    .legal-box {
        padding: 26px;
        border-radius: 20px;
    }

    .legal-conteudo {
        font-size: 16px;
    }

    .legal-conteudo h2 {
        font-size: 23px;
    }
}

/*CALCULADORA JUROS COMPOSTOS*/
.ferramenta-hero {
    padding: 58px 20px;
    text-align: center;
}

.ferramenta-hero-inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.ferramenta-etiqueta {
    display: inline-block;
    background: rgba(220, 252, 231, 0.12);
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.22);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.ferramenta-hero h1 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.12;
}

.ferramenta-hero p {
    max-width: 760px;
    margin: 0 auto;
}

.ferramenta-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 42px 20px;
}

.calculadora-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 26px;
    align-items: flex-start;
}

.calculadora-box,
.resultado-box,
.evolucao-box,
.ferramenta-conteudo {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--sombra);
    padding: 34px;
}

.ferramenta-etiqueta-verde {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.calculadora-box h2,
.resultado-box h2,
.evolucao-box h2,
.ferramenta-conteudo h2 {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.18;
}

.calculadora-form label {
    display: block;
    font-weight: 800;
    color: #374151;
    margin-bottom: 7px;
}

.calculadora-form input,
.calculadora-form select {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    margin-bottom: 17px;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
    background: #fff;
}

.calculadora-form input:focus,
.calculadora-form select:focus {
    border-color: var(--cor-principal);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.calculadora-duas-colunas {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 14px;
}

.calculadora-aviso {
    margin: 18px 0 0;
    color: var(--cor-texto-suave);
    font-size: 14px;
    line-height: 1.6;
}

.calculadora-erro {
    background: #fee2e2;
    color: #991b1b;
    padding: 13px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid #fecaca;
}

.resultado-cards {
    display: grid;
    gap: 14px;
}

.resultado-card {
    background: #f9fafb;
    border: 1px solid var(--cor-borda);
    border-radius: 18px;
    padding: 20px;
}

.resultado-card span {
    display: block;
    color: var(--cor-texto-suave);
    font-weight: 700;
    margin-bottom: 7px;
}

.resultado-card strong {
    display: block;
    color: var(--cor-texto);
    font-size: 25px;
    line-height: 1.2;
}

.resultado-card.principal {
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    border-color: #bbf7d0;
}

.resultado-card.principal strong {
    color: #166534;
    font-size: 34px;
}

.evolucao-box {
    margin-top: 28px;
}

.evolucao-topo {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}

.evolucao-topo p {
    max-width: 420px;
    margin: 0;
    color: var(--cor-texto-suave);
    line-height: 1.6;
}

.tabela-responsiva {
    overflow-x: auto;
}

.evolucao-tabela {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.evolucao-tabela th,
.evolucao-tabela td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--cor-borda);
    text-align: left;
}

.evolucao-tabela th {
    background: #f9fafb;
    color: #374151;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ferramenta-conteudo {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.8;
    color: #1f2937;
}

.ferramenta-conteudo h2 {
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.ferramenta-conteudo p {
    margin-top: 0;
    margin-bottom: 18px;
}

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

    .ferramenta-hero h1 {
        font-size: 36px;
    }

    .evolucao-topo {
        display: block;
    }

    .evolucao-topo p {
        max-width: none;
        margin-top: 10px;
    }
}

@media (max-width: 650px) {
    .ferramenta-hero {
        padding: 46px 20px;
    }

    .ferramenta-hero h1 {
        font-size: 31px;
    }

    .calculadora-box,
    .resultado-box,
    .evolucao-box,
    .ferramenta-conteudo {
        padding: 26px;
        border-radius: 20px;
    }

    .calculadora-duas-colunas {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .resultado-card.principal strong {
        font-size: 28px;
    }
}

.reserva-progresso {
    margin-top: 18px;
    background: #f9fafb;
    border: 1px solid var(--cor-borda);
    border-radius: 18px;
    padding: 18px;
}

.reserva-progresso-topo {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    color: #374151;
    font-weight: 800;
}

.reserva-progresso-topo strong {
    color: var(--cor-principal);
}

.reserva-barra {
    width: 100%;
    height: 14px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.reserva-barra div {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #16a34a, #86efac);
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* ================================
   FERRAMENTAS EXTRAS
   ================================ */

.ferramenta-insight {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-weight: 700;
    line-height: 1.55;
}

.ferramenta-insight.positivo {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.ferramenta-insight.alerta {
    background: #fef3c7;
    color: #92400e;
    border-color: #fde68a;
}

.ferramenta-insight.negativo {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.site-submenu {
    max-height: 75vh;
    overflow-y: auto;
}

@media (min-width: 851px) {
    .site-submenu {
        min-width: 330px;
    }
}

@media (max-width: 650px) {
    .resultado-card strong {
        word-break: break-word;
    }

    .ferramenta-insight {
        font-size: 15px;
    }
}

/* ================================
   MENU MOBILE RESPONSIVO
   ================================ */

.site-logo {
    min-width: 0;
    flex-shrink: 0;
}

.site-logo span {
    white-space: nowrap;
}

.menu-mobile-toggle {
    display: none;
}

.menu-mobile-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--cor-borda);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.menu-mobile-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    transition: 0.2s ease;
}

@media (max-width: 850px) {
    .site-header {
        position: sticky;
        top: 0;
        overflow: visible;
    }

    .site-header-inner {
        position: relative;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between;
        padding: 10px 16px;
        gap: 12px;
    }

    .site-logo {
        max-width: calc(100% - 58px);
    }

    .site-logo img {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .site-logo span {
        font-size: 17px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .menu-mobile-btn {
        display: flex;
    }

    .site-menu {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 16px;
        right: 16px;
        width: auto;
        background: #ffffff;
        border: 1px solid var(--cor-borda);
        border-radius: 18px;
        box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
        padding: 12px;
        z-index: 200;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .menu-mobile-toggle:checked ~ .site-menu {
        display: flex;
    }

    .menu-mobile-toggle:checked + .menu-mobile-btn span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-mobile-toggle:checked + .menu-mobile-btn span:nth-child(2) {
        opacity: 0;
    }

    .menu-mobile-toggle:checked + .menu-mobile-btn span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-menu > a,
    .site-menu-dropdown summary {
        display: block;
        width: 100%;
        padding: 12px 13px;
        border-radius: 12px;
        font-size: 15px;
        color: #1f2937;
        text-decoration: none;
    }

    .site-menu > a:hover,
    .site-menu > a.ativo,
    .site-menu-dropdown.ativo summary,
    .site-menu-dropdown[open] summary {
        background: #dcfce7;
        color: #166534;
    }

    .site-menu-dropdown {
        width: 100%;
    }

    .site-menu-dropdown summary {
        display: block;
    }

    .site-submenu {
        position: static !important;
        display: none;
        transform: none !important;
        min-width: 100%;
        width: 100%;
        margin-top: 6px;
        padding: 8px;
        box-shadow: none;
        border-radius: 14px;
        background: #f9fafb;
    }

    .site-menu-dropdown[open] .site-submenu {
        display: block;
    }

    .site-menu-dropdown:hover .site-submenu {
        display: none;
    }

    .site-menu-dropdown[open]:hover .site-submenu {
        display: block;
    }

    .site-submenu::before {
        display: none;
    }

    .site-submenu a {
        white-space: normal;
        padding: 11px 12px;
    }
}

@media (max-width: 420px) {
    .site-logo img {
        width: 46px;
        height: 46px;
    }

    .site-logo span {
        font-size: 15px;
        max-width: 190px;
    }

    .menu-mobile-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 360px) {
    .site-logo span {
        max-width: 150px;
    }
}

/*FAQ*/
/* Ajustes para FAQ público e conteúdo HTML do editor */
.artigo-texto h2,
.artigo-texto h3,
.artigo-texto h4 {
    margin-top: 32px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.artigo-texto p,
.artigo-texto li,
.artigo-faq-resposta {
    line-height: 1.75;
}

.artigo-texto ul,
.artigo-texto ol {
    padding-left: 24px;
    margin: 18px 0;
}

.artigo-texto blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid currentColor;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
}

.artigo-texto table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow: hidden;
}

.artigo-texto th,
.artigo-texto td {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 10px;
    text-align: left;
}

.artigo-faq {
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.artigo-faq-topo span {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.artigo-faq-topo h2 {
    margin: 0 0 20px;
}

.artigo-faq-item {
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 14px;
    padding: 0;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
}

.artigo-faq-item summary {
    cursor: pointer;
    font-weight: 700;
    padding: 16px 18px;
    list-style-position: inside;
}

.artigo-faq-resposta {
    padding: 0 18px 18px;
}

.artigo-palavras-chave {
    margin-top: 28px;
}
