html, body {
    overflow-x: hidden;
}

body {
    background: #f6f8fb;
    margin: 0;
}

/* Fonte e cor SÓ no conteúdo dos artigos — antes o body trocava a fonte do
   site inteiro (o nav ficava em Segoe UI em vez da fonte padrão do site). */
.news-page, .page, .article-footer, .news-cta-wrap {
    font-family: 'Inter', "Segoe UI", Arial, sans-serif;
    color: #1f2a44;
}

body.view_article {
    display: block;
    width: 100%;
}

/* Escopo restrito ao conteúdo dos artigos — a regra global "a:hover
   {underline}" vazava pro nav do site. O :where() zera a especificidade,
   senão esta regra atropela a cor dos componentes (chip ativo, paginação). */
:where(.page, .news-content, .article-content) a { color: #0d6e83; text-decoration: none; }
:where(.page, .news-content, .article-content) a:hover { text-decoration: underline; }

.page {
    max-width: 900px;
    margin: 32px auto;
    padding: 0 18px 40px;
    width: 100%;
    box-sizing: border-box;
}

.article-wrapper {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
    padding: 28px;
    box-sizing: border-box;
}

.view_article header {
    text-align: center;
    margin-bottom: 16px;
}

.view_article header h1 {
    margin: 0 0 10px 0;
    font-size: 30px;
    color: #132238;
    line-height: 1.25;
}

.view_article header p {
    color: #56627a;
    margin: 0 0 10px;
}

.article-cover {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    display: block;
}

.article-hero {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    text-align: center;
}

.article-body {
    padding: 0;
}

.article-body p {
    line-height: 1.7;
    color: #27364e;
    margin: 0 0 16px;
}

.article-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 16px 0;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.article-meta {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 6px 12px;
    background: #eef3fb;
    color: #3d4b63;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.article-cta-block {
    margin: 16px 0 18px;
    padding: 14px;
    background: #f4f7fd;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.cta-block-header h2 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #132238;
}

.cta-block-header p {
    margin: 0 0 12px;
    color: #4a5a76;
    font-size: 14px;
}

.cta-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.cta-card {
    display: block;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #dbe5f3;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,.04);
    text-decoration: none;
    color: #1f2a44;
}

.cta-card:hover {
    border-color: #0d6e83;
    box-shadow: 0 6px 16px rgba(11,105,200,.12);
}

.cta-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #6b758a;
    margin-bottom: 4px;
}

.cta-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #132238;
}

.cta-link {
    font-size: 14px;
    font-weight: 600;
    color: #0d6e83;
}

.article-cta-final {
    margin-top: 20px;
}

.cta-final-box {
    padding: 16px;
    border-radius: 12px;
    background: #0d6e83;
    color: #fff;
    text-align: center;
}

.cta-final-box h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.cta-final-box p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #e9f1ff;
}

.cta-final-button {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    color: #0d6e83;
    font-weight: 700;
    text-decoration: none;
}

.cta-final-button:hover {
    text-decoration: none;
    background: #eaf2ff;
}

.article-footer {
    background: #0f2a33;
    color: #eef4fb;
    margin-top: 24px;
    padding: 26px 18px 34px;
    border-top: 1px solid #e2e8f0;
}

.article-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.article-footer a {
    color: inherit;
    text-decoration: none;
}

.brand-link {
    display: inline-block;
}

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f6ff;
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.brand-logo {
    height: 72px !important;
    width: auto !important;
    max-width: none !important;
    display: inline-block;
    object-fit: contain;
}

.view_article .brand-logo {
    width: auto !important;
    max-width: none !important;
}

.article-footer-brand p {
    margin: 8px 0 12px;
    font-size: 15px;
    color: #f5f9ff;
}

.brand-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    background: rgba(255,255,255,.1);
    color: #e7f0ff;
    border: 1px solid rgba(255,255,255,.2);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.article-footer-cta {
    background: #102f3a;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.article-footer-cta h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #fff;
}

.article-footer-cta p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #d8e7fb;
}

.article-footer-actions {
    display: grid;
    gap: 8px;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    text-align: center;
}

.btn-primary {
    background: #f7b122;
    color: #1b2a3a;
    box-shadow: 0 6px 14px rgba(0,0,0,.18);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
}

.article-footer-links {
    display: grid;
    gap: 8px;
    font-size: 14px;
    align-content: start;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #f5f9ff;
    font-weight: 600;
}

.footer-link:hover {
    background: rgba(255,255,255,.16);
    color: #ffffff;
}

.footer-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #e8f1ff;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-bubbles {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.cta-bubble {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    padding: 10px 12px;
}

.cta-bubble strong {
    display: block;
    font-size: 13px;
    color: #fff;
}

.cta-bubble span {
    display: block;
    font-size: 12px;
    color: #d8e7fb;
}

@media (min-width: 700px) {
    .article-footer-inner {
        grid-template-columns: 1.2fr 1.4fr 1fr;
        align-items: start;
    }
    .article-footer-actions {
        grid-template-columns: 1fr 1fr;
    }
    .cta-bubbles {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.article-item {
    border: 1px solid #e2e8f0;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.article-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
}

.article-image {
	width: 100%;
    height: auto;
    border-radius: 10px;
}

.article-date {
    font-size: 0.9em;
    color: #6b758a;
}

.article-preview {
    margin-top: 10px;
    font-size: 1em;
    color: #2b364d;
    line-height: 1.5;
}

.article-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: 16px;
    background: #fff;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,.04);
}

.article-filters label {
    font-weight: 600;
    color: #26354d;
}

.article-filters select,
.article-filters input {
    min-width: 160px;
}

.article-filters button {
    padding: 10px 14px;
    background: #0d6e83;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.pagination {
    margin: 16px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination a {
    padding: 8px 12px;
    border: 1px solid #dce3ef;
    border-radius: 6px;
    color: #0d6e83;
    background: #fff;
}

.pagination a.active {
    background: #0d6e83;
    color: #fff;
    border-color: #0d6e83;
}

@media (min-width: 700px) {
    .cta-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =====================================================================
   NOTICIAS — listagem redesenhada (news-*)
   Mobile-first · mantém compatibilidade com view_article.php
   ===================================================================== */

/* ── Página wrapper ── */
.news-page {
    background: #f4f7f5;
    min-height: 60vh;
}

/* ── Hero ── */
.news-hero {
    background: linear-gradient(160deg, #17404a 0%, #123a43 55%, #185044 100%);
    padding: 52px 20px 64px;
    position: relative;
    overflow: hidden;
}
/* triângulos da marca (motivo do logo/timbrado) */
.news-hero-deco {
    position: absolute;
    right: -120px; top: -140px;
    width: 340px; height: 500px;
    border-radius: 52px;
    transform: rotate(22deg);
    background: rgba(62, 180, 137, .14);
    pointer-events: none;
}
.news-hero-deco::after {
    content: '';
    position: absolute;
    left: -420px; bottom: -320px;
    width: 300px; height: 460px;
    border-radius: 52px;
    transform: rotate(22deg);
    background: rgba(242, 183, 45, .1);
}
.news-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.news-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin: 0 0 10px;
}
.news-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 12px;
}
.news-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin: 0;
    max-width: 540px;
}

/* ── Conteúdo principal ── */
.news-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 16px 48px;
}

/* ── Filtros ── */
.news-filters-wrap {
    margin-bottom: 28px;
}
.news-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* Chips de categoria */
.news-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.news-chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    background: #f8fafc;
    text-decoration: none;
    transition: background .14s, border-color .14s, color .14s;
    white-space: nowrap;
}
.news-chip:hover {
    border-color: #109cb8;
    color: #0d6e83;
    background: #e2f4f8;
    text-decoration: none;
}
.news-chip--active {
    background: #17404a;
    border-color: #17404a;
    color: #fff;
}
.news-chip--active:hover {
    background: #0e2b32;
    border-color: #0e2b32;
    color: #fff;
}

/* Campo de busca */
.news-search-form {
    display: flex;
    gap: 8px;
}
.news-search-inner {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 12px;
    background: #f8fafc;
    transition: border-color .14s;
    min-width: 0;
}
.news-search-inner:focus-within {
    border-color: #109cb8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16,156,184,.14);
}
.news-search-icon { font-style: normal; font-size: 14px; margin-right: 8px; flex-shrink: 0; }
.news-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #1e293b;
    outline: none;
    padding: 10px 0;
    min-width: 0;
    height: auto;
    margin: 0;
    width: auto;
}
.news-search-input::placeholder { color: #94a3b8; }
.news-search-clear {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: none;
    line-height: 1;
    padding: 0 2px;
    margin-left: 4px;
    transition: color .12s;
    flex-shrink: 0;
}
.news-search-clear:hover { color: #dc2626; text-decoration: none; }
.news-search-btn {
    padding: 10px 18px;
    background: #0d6e83;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .14s;
    flex-shrink: 0;
    font-family: inherit;
    height: auto;
    margin: 0;
    width: auto;
}
.news-search-btn:hover { background: #155239; }

/* Status de filtro */
/* Linha de status do filtro: tudo junto à esquerda, "limpar" como link
   petróleo logo após o texto (nada de pílula vermelha solta na direita) */
.news-filter-status {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13.5px;
    color: #46595f;
    padding: 4px 0;
}
.news-filter-status strong { color: #16242a; }
.news-filter-clear {
    font-size: 13px;
    font-weight: 700;
    color: #0d6e83;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.news-filter-clear:hover { color: #17404a; }

/* ── Grid de artigos ── */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* ── Card padrão ── */
.news-card {
    background: #fff;
    border: 1px solid #e8eef4;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .18s, transform .18s;
}
.news-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    transform: translateY(-2px);
}

/* Imagem */
.news-card-img-wrap {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8f0e8;
    flex-shrink: 0;
    text-decoration: none;
}
.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .28s;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f1;
    color: #94a3b8;
    font-size: 36px;
}

/* Badge de categoria sobre a imagem */
.news-card-badge {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(26,92,68,.88);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* Corpo do card */
.news-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.news-card-dot { opacity: .5; }
.news-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    margin: 0 0 10px;
}
.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color .14s;
}
.news-card-title a:hover { color: #0d6e83; text-decoration: none; }
.news-card-excerpt {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1;
}
.news-card-link {
    font-size: 13px;
    font-weight: 700;
    color: #0d6e83;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .14s;
    margin-top: auto;
}
.news-card-link:hover { gap: 8px; text-decoration: none; color: #155239; }

/* ── Card em destaque (primeiro artigo) ── */
.news-card--featured .news-card-title { font-size: 22px; }
.news-card--featured .news-card-excerpt { font-size: 15px; }
.news-card--featured .news-card-link {
    font-size: 14px;
    padding: 10px 18px;
    background: #0d6e83;
    color: #fff;
    border-radius: 10px;
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(26,92,68,.22);
}
.news-card--featured .news-card-link:hover {
    background: #155239;
    gap: 8px;
    color: #fff;
}

/* ── Empty state ── */
.news-empty {
    text-align: center;
    padding: 56px 20px;
    color: #94a3b8;
}
.news-empty-ico  { font-size: 48px; margin-bottom: 14px; }
.news-empty-title { font-size: 18px; font-weight: 700; color: #64748b; margin: 0 0 8px; }
.news-empty-sub  { font-size: 14px; margin: 0; }
.news-empty-sub a { color: #0d6e83; font-weight: 600; }

/* ── Paginação ── */
.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e8eef4;
}
.news-page-nums { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.news-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    background: #fff;
    text-decoration: none;
    transition: background .14s, border-color .14s, color .14s;
}
.news-page-btn:hover { border-color: #0d6e83; color: #0d6e83; background: #e2f4f8; text-decoration: none; }
.news-page-btn--active {
    background: #17404a; /* teal da marca = selecionado */
    border-color: #17404a;
    color: #fff;
}
.news-page-btn--active:hover { background: #0e2b32; color: #fff; }
.news-page-btn--nav { padding: 0 16px; gap: 4px; }
.news-page-btn--disabled {
    opacity: .35;
    pointer-events: none;
    cursor: default;
}
.news-page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
}

/* ── CTA de inscrição (bottom) — teal→petróleo da marca, botão OURO ── */
.news-cta-wrap {
    background: linear-gradient(135deg, #17404a 0%, #109cb8 100%);
    padding: 40px 20px;
}
.news-cta {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.news-cta-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.news-cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,.8);
    margin: 0;
    line-height: 1.55;
}
.news-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #f2b72d; /* ouro = momento de ação/conquista */
    color: #21313a;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px -10px rgba(0,0,0,.35);
    transition: background .15s, transform .1s;
    white-space: nowrap;
    flex-shrink: 0;
}
.news-cta-btn:hover { background: #e0a51a; transform: translateY(-1px); text-decoration: none; }

/* ── Tablet (≥ 600px) ── */
@media (min-width: 600px) {
    .news-hero-title { font-size: 44px; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-card--featured { grid-column: 1 / -1; }
    .news-filters { flex-direction: row; align-items: center; }
    .news-search-form { flex-shrink: 0; min-width: 280px; }
}

/* ── Desktop (≥ 900px) ── */
@media (min-width: 900px) {
    .news-hero { padding: 64px 20px 80px; }
    .news-hero-title { font-size: 52px; }
    .news-content { padding: 40px 24px 64px; }

    .news-grid { grid-template-columns: repeat(3, 1fr); }
    .news-card--featured { grid-column: 1 / -1; }

    /* Destaque: imagem esquerda, texto direita */
    .news-card--featured {
        flex-direction: row;
        min-height: 340px;
    }
    .news-card--featured .news-card-img-wrap {
        width: 55%;
        aspect-ratio: auto;
        flex-shrink: 0;
        border-radius: 16px 0 0 16px;
    }
    .news-card--featured .news-card-body {
        padding: 32px 36px;
        justify-content: center;
    }
    .news-card--featured .news-card-title { font-size: 26px; }

    /* CTA em linha */
    .news-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .news-cta-text { flex: 1; }
}

/* ── Override: esconde estrutura antiga do .artigos na noticias ── */
.news-page + * h2,
.artigos > h1,
.artigos > h2,
.artigos > h3 { display: none; }

/* =====================================================================
   NOTICIAS .FIM
   ===================================================================== */


/* =====================================================================
   VIEW ARTICLE — redesign (va-*)
   Mobile-first · classe .view_article no <body>
   ===================================================================== */

/* ── Barra de progresso de leitura ── */
#va-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #0d6e83, #109cb8);
    z-index: 9999;
    transition: width .1s linear;
    pointer-events: none;
}

/* ── Hero ── */
.va-hero {
    background: linear-gradient(135deg, #0f2233 0%, #1B3B55 100%);
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}
.va-hero--img {
    background-image: var(--va-thumb);
    background-size: cover;
    background-position: center;
    min-height: 380px;
}
.va-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 20, 35, .25) 0%,
        rgba(10, 20, 35, .92) 100%
    );
    display: flex;
    align-items: flex-end;
}
.va-hero-inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 20px 36px;
}

/* Breadcrumb */
.va-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    margin-bottom: 14px;
}
.va-breadcrumb a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .13s;
}
.va-breadcrumb a:hover { color: #fff; }
.va-breadcrumb span { opacity: .4; }

/* Meta */
.va-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.va-category {
    display: inline-block;
    padding: 4px 12px;
    background: #0d6e83;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .13s;
}
.va-category:hover { background: #155239; text-decoration: none; color: #fff; }
.va-date, .va-readtime {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}
.va-meta-dot { color: rgba(255,255,255,.3); font-size: 14px; }

/* Título */
.va-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Share */
.va-share {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.va-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: background .14s, transform .1s;
    font-family: inherit;
}
.va-share-btn:active { transform: scale(.97); }
.va-share-wpp {
    background: #16a34a;
    color: #fff;
}
.va-share-wpp:hover { background: #15803d; color: #fff; text-decoration: none; }
.va-share-copy {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(4px);
}
.va-share-copy:hover { background: rgba(255,255,255,.25); }

/* ── Container do artigo ── */
.va-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px;
}

/* (a capa duplicada abaixo do hero no mobile saiu em 06/07/2026 — a foto
   vive no hero e reaparece menor no meio do texto, .va-midcover) */

/* ── Corpo do artigo ── */
.va-body {
    padding: 40px 0 32px;
    font-size: 17px;
    line-height: 1.85;
    color: #27364e;
}
.va-body p    { margin: 0 0 1.4em; }
.va-body h2   { font-size: 22px; font-weight: 800; color: #1a202c; margin: 2em 0 .7em; line-height: 1.25; }
.va-body h3   { font-size: 19px; font-weight: 700; color: #1a202c; margin: 1.8em 0 .6em; }
.va-body h4   { font-size: 16px; font-weight: 700; color: #2d3748; margin: 1.5em 0 .5em; }
.va-body ul, .va-body ol { margin: 0 0 1.4em 1.6em; }
.va-body li   { margin-bottom: .5em; }
.va-body a    { color: #0d6e83; text-decoration: underline; transition: color .13s; }
.va-body a:hover { color: #0f3d2b; }
.va-body strong { color: #1a202c; }
.va-body blockquote {
    margin: 1.6em 0;
    padding: 16px 20px;
    border-left: 4px solid #0d6e83;
    background: #f0fdf9;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #475569;
    font-size: .96em;
}
.va-body img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 1.8em auto;
    display: block;
    box-shadow: 0 6px 28px rgba(0,0,0,.1);
}
.va-body figure { margin: 1.8em 0; text-align: center; }
.va-body figcaption { font-size: 13px; color: #64748b; margin-top: 8px; font-style: italic; }
/* Capa repetida no MEIO do texto (depois da introdução): entra MENOR e
   centralizada — só um respiro visual, sem competir com o conteúdo. */
.va-body .va-midcover { max-width: 440px; margin: 2.2em auto; }
.va-body .va-midcover img { margin: 0 auto; width: 100%; }
.va-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    font-size: .93em;
}
.va-body th, .va-body td {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    text-align: left;
}
.va-body th { background: #f8fafc; font-weight: 700; color: #1a202c; }
.va-body tr:nth-child(even) td { background: #f8fafc; }

/* ── CTA inline ── */
.va-inline-cta {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #f0fdf9, #e8f7f1);
    border: 1.5px solid #6ee7c0;
    border-radius: 16px;
    padding: 20px;
    margin: 8px 0 40px;
    flex-wrap: wrap;
}
.va-inline-cta-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.va-inline-cta-text { flex: 1; min-width: 180px; }
.va-inline-cta-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #0d6e83;
    margin-bottom: 4px;
}
.va-inline-cta-text p {
    font-size: 13px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}
.va-inline-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0d6e83;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    align-self: center;
    transition: background .14s;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(26,92,68,.22);
}
.va-inline-cta-btn:hover { background: #155239; text-decoration: none; color: #fff; }

/* ── Seção comum (title, eyebrow, sub) ── */
.va-sec-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0d6e83;
    margin: 0 0 8px;
}
.va-sec-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.2;
}
.va-sec-title em { font-style: normal; color: #0d6e83; }
.va-sec-sub {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 24px;
    line-height: 1.55;
}

/* ── Empreendimentos ── */
.va-emp {
    background: #f4f7f5;
    padding: 48px 20px;
    margin-top: 16px;
}
.va-emp-inner { max-width: 860px; margin: 0 auto; }
.va-emp-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.va-emp-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    color: #1e293b;
    transition: box-shadow .16s, transform .16s, border-color .16s;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.va-emp-card:hover {
    box-shadow: 0 8px 24px rgba(26,92,68,.14);
    border-color: #6ee7c0;
    transform: translateY(-2px);
    text-decoration: none;
}
.va-emp-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #0d6e83;
}
.va-emp-name {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}
.va-emp-link {
    font-size: 13px;
    font-weight: 700;
    color: #0d6e83;
    margin-top: 4px;
}

/* ── Artigos relacionados ── */
.va-related {
    padding: 48px 20px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}
.va-related-inner { max-width: 860px; margin: 0 auto; }
.va-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.va-rel-card {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #e8eef4;
    border-radius: 14px;
    text-decoration: none;
    color: #1e293b;
    transition: box-shadow .15s, transform .15s;
}
.va-rel-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); transform: translateY(-1px); text-decoration: none; }
.va-rel-img-wrap {
    width: 88px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #e8f0e8;
}
.va-rel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}
.va-rel-img--ph { display: flex; align-items: center; justify-content: center; font-size: 24px; }
.va-rel-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.va-rel-date  { font-size: 11px; color: #94a3b8; margin: 0; }
.va-rel-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.va-rel-link  { font-size: 12px; font-weight: 700; color: #0d6e83; margin-top: auto; }

/* ── Footer do artigo ── */
.va-footer {
    background: #0f2233;
    color: #e8f1ff;
    padding: 48px 20px 56px;
}
.va-footer-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

/* Marca */
.va-footer-logo-link { display: inline-block; text-decoration: none; }
.va-footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f6ff;
    border-radius: 12px;
    padding: 8px 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.va-footer-logo {
    height: 60px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
    display: block;
}
.va-footer-brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    margin: 12px 0 14px;
}
.va-footer-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.va-badge {
    background: rgba(255,255,255,.1);
    color: #d8e8ff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 600;
}

/* CTA de contato */
.va-footer-cta-box {
    background: #102f3a;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 22px;
}
.va-footer-cta-title { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.va-footer-cta-sub   { font-size: 13px; color: #b8d0f0; margin: 0 0 16px; line-height: 1.5; }
.va-footer-actions   { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.va-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .14s;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}
.va-footer-btn--wpp  { background: #16a34a; color: #fff; }
.va-footer-btn--wpp:hover  { background: #15803d; color: #fff; text-decoration: none; }
.va-footer-btn--tel  { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.va-footer-btn--tel:hover  { background: rgba(255,255,255,.2); color: #fff; text-decoration: none; }
.va-footer-bubbles { display: grid; gap: 8px; }
.va-bubble { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 10px 12px; }
.va-bubble strong { display: block; font-size: 13px; color: #fff; margin-bottom: 2px; }
.va-bubble span   { display: block; font-size: 12px; color: #9ab8d8; }

/* Links rápidos */
.va-footer-links { display: flex; flex-direction: column; gap: 8px; }
.va-footer-link-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.va-footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: #d8e8ff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .13s;
}
.va-footer-link:hover { background: rgba(255,255,255,.14); color: #fff; text-decoration: none; }

/* ── Tablet (≥ 640px) ── */
@media (min-width: 640px) {
    .va-hero--img { min-height: 460px; }
    .va-title { font-size: 34px; }
    .va-body { font-size: 18px; }
    .va-emp-cards { grid-template-columns: repeat(3, 1fr); }
    .va-related-grid { grid-template-columns: repeat(2, 1fr); }
    .va-footer-inner { grid-template-columns: 1fr 1fr; }
    .va-footer-bubbles { grid-template-columns: repeat(3, 1fr); }
}

/* ── Desktop (≥ 900px) ── */
@media (min-width: 900px) {
    .va-hero--img { min-height: 520px; }
    .va-title { font-size: 42px; }
    .va-hero-inner  { padding: 36px 24px 52px; }
    .va-container   { padding: 0 24px; }
    .va-body        { padding: 52px 0 40px; }
    .va-related-grid { grid-template-columns: repeat(3, 1fr); }
    .va-footer-inner { grid-template-columns: 1.1fr 1.4fr .9fr; align-items: start; }
}

/* =====================================================================
   VIEW ARTICLE .FIM
   ===================================================================== */

/* ── Blogs por frente: cards compactos abaixo da paginação ──────────
   Painel de texto SÓLIDO (legível sempre) + foto contida ao lado. */
.news-hubbn-wrap { max-width: 860px; margin: 40px auto 8px; padding: 0 18px; display: grid; gap: 18px; }
.news-hubbn {
    position: relative; display: flex; align-items: stretch;
    border-radius: 18px; overflow: hidden;
    text-decoration: none !important;
    background: linear-gradient(135deg, #17404a, #123a43);
    box-shadow: 0 14px 34px -18px rgba(14, 43, 50, .4);
    transition: transform .16s ease, box-shadow .16s ease;
}
.news-hubbn:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -18px rgba(14, 43, 50, .55); }
.news-hubbn-body { position: relative; z-index: 1; padding: 24px 28px; padding-right: 42%; }
.news-hubbn-body::after {
    content: ''; position: absolute; width: 160px; height: 260px; border-radius: 36px;
    background: rgba(62, 180, 137, .12); left: -80px; bottom: -140px; transform: rotate(22deg); pointer-events: none;
}
/* Foto CONTIDA na lateral direita (absoluta) — a altura do card é ditada
   pelo TEXTO, nunca pela foto (senão o banner explode com foto vertical) */
.news-hubbn-img {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 40%; height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 46px);
    mask-image: linear-gradient(90deg, transparent 0, #000 46px);
}
.news-hubbn-kicker {
    display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: #f2b72d; margin-bottom: 8px;
}
.news-hubbn-title { margin: 0 0 6px; font-size: 21px; font-weight: 800; letter-spacing: -.015em; color: #fff; line-height: 1.2; }
.news-hubbn-desc { margin: 0 0 14px; font-size: 13.5px; line-height: 1.55; color: #b9d6ce; }
.news-hubbn-chips { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.news-hubbn-chips span {
    font-size: 11.5px; font-weight: 700; color: #a9e6cf;
    background: rgba(62, 180, 137, .16); border: 1px solid rgba(62, 180, 137, .38);
    padding: 4px 11px; border-radius: 999px;
}
.news-hubbn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f2b72d; color: #21313a; font-size: 13.5px; font-weight: 800;
    padding: 10px 20px; border-radius: 999px;
}
.news-hubbn:hover .news-hubbn-cta { background: #e0a51a; }
@media (max-width: 640px) {
    .news-hubbn { flex-direction: column; }
    .news-hubbn-img {
        position: static; width: 100%; height: 140px;
        -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
    }
    .news-hubbn-body { padding: 4px 20px 22px; }
}
