/*
Theme Name: Diovane Franco Advogados
Theme URI: https://diovanefranco.com.br
Author: Diovane Franco Advogados
Description: Tema institucional para o escritório Diovane Franco Advogados. Direito Ambiental e do Agronegócio.
Atualizado em: 09/03/2026
Version: 1.0.0
Text Domain: diovane-franco
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #444444;
    background-color: #FFFFFF;
}

/* WordPress admin bar fix */
body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

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

a {
    color: #1B4332;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #2E7D5B;
}

a:focus-visible {
    outline: 2px solid #1B4332;
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

::selection {
    background: #1B4332;
    color: #FFFFFF;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
    color: #2D2D2D;
    font-weight: 400;
    line-height: 1.3;
}

h1 { font-size: 2.75rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p {
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
    color: #2D2D2D;
}

blockquote {
    font-family: 'PT Serif', Georgia, serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #2D2D2D;
    border-left: 3px solid #1B4332;
    padding: 1rem 0 1rem 2rem;
    margin: 2rem 0;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    padding: 5rem 0;
    background-color: #F8FAF9;
}

.section-dark {
    padding: 5rem 0;
    background-color: #1A1A1A;
    color: #FFFFFF;
}

/* ===== HEADER ===== */
.site-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.site-logo img {
    height: 34px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-logo:hover img {
    opacity: 0.75;
    transform: scale(1.04);
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav a {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #1B4332;
    transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    color: #1B4332;
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
    width: 100%;
}

/* Dropdown / Submenu */
.main-nav li {
    position: relative;
}

.main-nav ul.sub-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    min-width: 220px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #1B4332;
    z-index: 1000;
    flex-direction: column;
    gap: 0;
}

.main-nav li:hover > ul.sub-menu {
    display: flex !important;
}

.main-nav .sub-menu li {
    width: 100%;
    transition: background 0.2s;
}

.main-nav .sub-menu li:hover {
    background: #F5F8F7;
}

.main-nav .sub-menu a {
    display: block;
    width: 100%;
    padding: 0.625rem 1.25rem;
    font-size: 0.6875rem;
    color: #555;
    white-space: nowrap;
    transition: color 0.2s;
}

.main-nav .sub-menu li:hover a {
    color: #1B4332;
}

.main-nav .sub-menu a::after {
    display: none;
}

/* Seta indicadora de submenu */
.main-nav .menu-item-has-children > a {
    padding-right: 0.2rem;
}

.main-nav .menu-item-has-children > a span.nav-arrow {
    font-size: 1.05rem;
    margin-left: 0.1rem;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.7;
    transition: transform 0.2s, opacity 0.2s;
}

.main-nav .menu-item-has-children:hover > a span.nav-arrow {
    opacity: 1;
    transform: rotate(180deg);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2D2D2D;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO DARK (com imagem de fundo) ===== */
.hero-dark {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/img/escritorio.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(27,67,50,0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

.hero-logo {
    max-width: 340px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-divider {
    width: 48px;
    height: 2px;
    background: #2E7D5B;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.15s forwards;
}

.hero-tagline {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.25s forwards;
}

.btn-hero {
    display: inline-block;
    background: #1B4332;
    color: #FFFFFF;
    padding: 0.875rem 2.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 2px;
    transition: background-color 0.25s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn-hero:hover {
    background: #2E7D5B;
    color: #FFFFFF;
}
.btn-hero-outline {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
}
.institucional-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SOBRE HOME (com foto) ===== */
.sobre-home {
    padding: 6rem 0;
    background: #FFFFFF;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-img img {
    width: 100%;
    border-radius: 2px;
    filter: grayscale(10%);
}

.sobre-text h2 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.sobre-cargo {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1B4332;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.sobre-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* ===== DECISOES DO DIA (Home Widget) ===== */
.decisoes-home {
    padding: 5rem 0;
    background: #F8FAF9;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 2rem;
    color: #2D2D2D;
    margin-bottom: 0.75rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: #1B4332;
    margin-top: 0.75rem;
}

.section-header .subtitle {
    font-size: 0.9375rem;
    color: #888;
    font-weight: 400;
}

.decisao-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-left: 4px solid transparent;
    border-radius: 4px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.decisao-card:hover {
    border-left-color: #1B4332;
    border-color: #1B4332;
    background-color: #F5F9F7;
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.08);
    transform: translateY(-2px);
}

.decisao-card:hover h3 a {
    color: #1B4332;
}

.decisao-card:hover .decisao-date {
    color: #1B4332;
}

.decisao-card:hover .decisao-tribunal {
    background-color: #1B4332;
    color: #FFFFFF;
}

.decisao-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    flex-wrap: wrap;
}

.decisao-date {
    color: #888;
}

.decisao-tribunal {
    display: inline-block;
    background: #1B4332;
    color: #FFFFFF;
    padding: 0.2rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 1px;
}

.decisao-card h3 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.decisao-card h3 a {
    color: #2D2D2D;
    transition: color 0.2s ease;
}

.decisao-card h3 a:hover {
    color: #1B4332;
}

.decisao-ementa {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.65;
}

/* ===== AREAS DE ATUACAO (Home Grid) ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #E5E5E5;
    border: 1px solid #E5E5E5;
}

.area-item {
    background: #FFFFFF;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: background-color 0.25s ease;
}

.area-item:hover {
    background: #F5F8F7;
}

.area-item a {
    color: #2D2D2D;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.area-item:hover a {
    color: #1B4332;
}

/* ===== PUBLICACOES (Home) ===== */
.publicacoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.publicacao-card {
    border-bottom: 2px solid #E5E5E5;
    padding-bottom: 1.5rem;
    transition: border-color 0.25s ease;
}

.publicacao-card:hover {
    border-bottom-color: #1B4332;
}

.publicacao-source {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1B4332;
    margin-bottom: 0.75rem;
}

.publicacao-card h3 {
    font-size: 1.0625rem;
    line-height: 1.45;
}

.publicacao-card h3 a {
    color: #2D2D2D;
    transition: color 0.2s ease;
}

.publicacao-card h3 a:hover {
    color: #1B4332;
}

/* ===== LIVRO (Home - seção do livro) ===== */
.livro-home {
    padding: 5rem 0;
    background-color: #F8FAF9;
}

.livro-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.livro-home-capa {
    text-align: center;
}

.livro-home-capa img {
    max-width: 380px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.livro-home-capa img:hover {
    transform: scale(1.02);
}

.livro-home-selo {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1B4332;
    background: #E8F0EC;
    padding: 0.35rem 1rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.livro-home-texto h2 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 2rem;
    color: #1B4332;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.livro-home-texto p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 1rem;
}

.livro-home-destaque {
    font-style: italic;
    color: #1B4332 !important;
    font-size: 0.9375rem !important;
}

.livro-home-texto .btn-text {
    margin-top: 0.5rem;
}

/* ===== INFORMATIVOS MENSAIS ===== */
.informativo-ano-grupo {
    margin-bottom: 3rem;
}

.informativo-ano-titulo {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.75rem;
    color: #1B4332;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E8F0EC;
}

.informativo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.informativo-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    padding: 1.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.informativo-card:hover {
    border-color: #1B4332;
    box-shadow: 0 4px 16px rgba(27,67,50,0.08);
}

.informativo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.informativo-card-mes {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1B4332;
}

.informativo-card-ano {
    font-size: 0.8125rem;
    color: #999;
}

.informativo-card h3 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.informativo-card h3 a {
    color: #2D2D2D;
    text-decoration: none;
    transition: color 0.2s ease;
}

.informativo-card h3 a:hover {
    color: #1B4332;
}

.informativo-card-stats {
    font-size: 0.8125rem;
    color: #1B4332;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.informativo-card-excerpt {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.informativo-card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.informativo-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1B4332;
    background: #E8F0EC;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.informativo-pdf-link:hover {
    background: #d0e0d6;
}

/* Single Informativo */
.informativo-badge {
    display: inline-block;
    background: #1B4332;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.informativo-pdf-box {
    margin: 1.5rem 0 2rem;
}

.informativo-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1B4332;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.informativo-pdf-btn:hover {
    background: #2E7D5B;
    color: #fff;
}

.informativo-pdf-btn svg {
    flex-shrink: 0;
}

/* Estatísticas */
.informativo-stats {
    background: #F8FAF9;
    border: 1px solid #E8F0EC;
    border-radius: 6px;
    padding: 2rem;
    margin: 2rem 0;
}

.informativo-stats h2 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.375rem;
    color: #1B4332;
    margin-bottom: 1.5rem;
}

.informativo-stats h3 {
    font-size: 1rem;
    color: #1B4332;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.informativo-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.informativo-stat-card {
    text-align: center;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    padding: 1.25rem 1rem;
}

.informativo-stat-num {
    display: block;
    font-family: 'PT Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1B4332;
    line-height: 1.2;
}

.informativo-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: #666;
    margin-top: 0.25rem;
}

.informativo-tribunal-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.informativo-tribunal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 3px;
}

.informativo-tribunal-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #444;
}

.informativo-tribunal-count {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1B4332;
    background: #E8F0EC;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
}

.informativo-temas-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.informativo-tema-tag {
    display: inline-block;
    font-size: 0.8125rem;
    color: #444;
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
}

.informativo-tema-tag small {
    color: #1B4332;
    font-weight: 600;
}

/* Lista de decisões do mês */
.informativo-decisoes-lista {
    margin-top: 2.5rem;
}

.informativo-decisoes-lista h2 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.375rem;
    color: #1B4332;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E8F0EC;
}

.informativo-decisoes-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.informativo-decisao-row {
    display: grid;
    grid-template-columns: 50px 80px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.informativo-decisao-row:last-child {
    border-bottom: none;
}

.informativo-decisao-data {
    font-size: 0.8125rem;
    color: #999;
}

.informativo-decisao-tribunal {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1B4332;
    background: #E8F0EC;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    text-align: center;
}

.informativo-decisao-titulo {
    font-size: 0.875rem;
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.informativo-decisao-titulo:hover {
    color: #1B4332;
}

/* ===== INSTITUCIONAL (Home - com imagem de fundo) ===== */
.institucional-home {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.institucional-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(27,67,50,0.55) 100%);
    z-index: 1;
}

.institucional-content {
    position: relative;
    z-index: 2;
}

.institucional-home blockquote {
    border: none;
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.625rem;
    font-style: italic;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    padding: 0;
    line-height: 1.7;
}

.btn-text {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1B4332;
    border-bottom: 1px solid #1B4332;
    padding-bottom: 3px;
    transition: all 0.25s ease;
}

.btn-text:hover {
    color: #2E7D5B;
    border-bottom-color: #2E7D5B;
}

/* Botão verde sólido */
.btn-green {
    display: inline-block;
    background: #1B4332;
    color: #FFFFFF;
    padding: 0.875rem 2.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 2px;
    transition: background-color 0.25s ease;
    cursor: pointer;
}

.btn-green:hover {
    background: #2E7D5B;
    color: #FFFFFF;
}

/* Botão verde outline */
.btn-outline {
    display: inline-block;
    border: 1.5px solid #1B4332;
    color: #1B4332;
    padding: 0.75rem 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    border-radius: 2px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: #1B4332;
    color: #FFFFFF;
}

/* ===== PAGE HERO (sub-pages with background image) ===== */
.page-hero {
    position: relative;
    padding: 8rem 0 5rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(27,67,50,0.4) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1,
.page-hero .page-hero-title {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 2.75rem;
    color: #FFFFFF;
    margin-bottom: 0;
}

.page-hero h1::after,
.page-hero .page-hero-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: #2E7D5B;
    margin: 1rem auto 0;
}

/* Landing pages estaduais */
.landing-escritorio-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2d5016;
}
.landing-escritorio-card h3 {
    margin-top: 0;
}
.landing-escritorio-card .btn-primary {
    display: inline-block;
    margin-top: 1rem;
}
.landing-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2d5016, #4a7c25);
    color: #fff;
    border-radius: 12px;
    margin: 3rem 0;
}
.landing-cta h2 {
    color: #fff;
    margin-top: 0;
}
.landing-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
}
.landing-cta-sub {
    margin-top: 1rem;
}
.landing-cta-sub .btn-text {
    color: rgba(255,255,255,0.85);
}
.landing-cta-sub .btn-text:hover {
    color: #fff;
}

/* Landing — credenciais */
.landing-credenciais {
    margin: 3rem 0;
}
.landing-credenciais h2 {
    margin-bottom: 1.5rem;
}
.landing-credenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.landing-credencial-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #1B4332;
}
.landing-credencial-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1B4332;
    font-size: 0.95rem;
}
.landing-credencial-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}
@media (max-width: 640px) {
    .landing-credenciais-grid {
        grid-template-columns: 1fr;
    }
}
/* Landing — decisões recentes */
.landing-decisoes,
.landing-artigos {
    margin: 3rem 0;
}
.landing-decisoes h2,
.landing-artigos h2 {
    margin-bottom: 0.5rem;
}
.landing-decisoes-sub {
    color: #777;
    margin-bottom: 1.5rem;
}
.landing-decisoes-list,
.landing-artigos-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.landing-decisao-card,
.landing-artigo-card {
    display: block;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.landing-decisao-card:hover,
.landing-artigo-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.landing-decisao-data,
.landing-artigo-data {
    font-size: 0.8rem;
    color: #999;
}
.landing-decisao-card h3,
.landing-artigo-card h3 {
    font-size: 0.95rem;
    margin: 0.5rem 0 0;
    line-height: 1.4;
    color: #1B4332;
}
.landing-artigo-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0.5rem 0 0;
    line-height: 1.5;
}
.landing-ver-mais {
    display: inline-block;
    margin-top: 1rem;
    color: #1B4332;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.landing-ver-mais:hover {
    color: #2E7D5B;
}
@media (max-width: 768px) {
    .landing-decisoes-list,
    .landing-artigos-list {
        grid-template-columns: 1fr;
    }
}

/* Landing — botão CTA (fix hover + transição) */
.landing-cta .btn-cta-landing {
    background: #fff;
    color: #2d5016;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.landing-cta .btn-cta-landing:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    color: #1B4332;
}

/* Landing Pages — Gancho introdutório */
.ld-gancho {
    margin: 2rem 0 0.5rem;
    max-width: 840px;
}
.ld-gancho p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}
.ld-gancho strong {
    color: #1B4332;
}

/* =============================================
   Landing Pages — Seção de dados de fiscalização
   ============================================= */
.ld-dados-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 16px;
    border: 1px solid #e8ece8;
}
.ld-dados-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.ld-dados-icon {
    width: 52px;
    height: 52px;
    background: #1B4332;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(149,213,178,0.9);
    flex-shrink: 0;
}
.ld-sema-icon {
    background: #5D3A1A;
}
.ld-dados-title {
    margin: 0 0 0.25rem;
    font-size: 1.35rem;
    color: #1B4332;
    line-height: 1.3;
}
.ld-dados-sub {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}
.ld-section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1B4332;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1B4332;
    display: inline-block;
}
.ld-sema-label {
    color: #5D3A1A;
    border-bottom-color: #5D3A1A;
}

/* Loading */
.ld-loading {
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 0.9rem;
}
.ld-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #e5e5e5;
    border-top-color: #1B4332;
    border-radius: 50%;
    animation: ld-spin 0.8s linear infinite;
    margin: 0 auto 0.75rem;
}
@keyframes ld-spin {
    to { transform: rotate(360deg); }
}

/* Cards de resumo */
.ld-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.ld-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid #e8ece8;
    transition: box-shadow 0.2s ease;
}
.ld-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.ld-card-label {
    display: block;
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}
.ld-card-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B4332;
    line-height: 1.2;
}
.ld-card-value-accent {
    color: #D4A853;
}
.ld-card-sub {
    display: block;
    font-size: 0.78rem;
    color: #999;
    margin-top: 0.25rem;
}
.ld-card-highlight {
    background: linear-gradient(135deg, #1B4332, #2E7D5B);
    border: none;
}
.ld-card-highlight .ld-card-label {
    color: rgba(255,255,255,0.7);
}
.ld-card-highlight .ld-card-value {
    color: #fff;
}
.ld-card-highlight .ld-card-sub {
    color: rgba(255,255,255,0.65);
}
.ld-sema-card {
    border-left: 3px solid #8B4513;
}

/* Gráficos */
.ld-charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.ld-chart-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid #e8ece8;
}
.ld-chart-card-wide {
    grid-column: 1 / -1;
}
.ld-chart-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin: 0 0 1rem;
}
.ld-chart-wrap {
    position: relative;
    height: 280px;
}
.ld-chart-wrap-doughnut {
    height: 260px;
    max-width: 320px;
    margin: 0 auto;
}

/* Tabela */
.ld-table-section {
    margin-bottom: 2rem;
}
.ld-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.ld-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.ld-table th {
    background: #f0f4f0;
    padding: 0.65rem 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #1B4332;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.ld-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}
.ld-table tbody tr:hover {
    background: #f8faf8;
}
.ld-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #1B4332;
    color: #fff;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* SEMA extras (MT) */
.ld-sema-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.ld-sema-extra-box {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid #e8ece8;
}
.ld-sema-extra-box h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5D3A1A;
    margin: 0 0 1rem;
}
.ld-extra-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}
.ld-extra-item {
    text-align: center;
    padding: 0.75rem;
    background: #faf5ef;
    border-radius: 8px;
}
.ld-extra-item-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #5D3A1A;
}
.ld-extra-item-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.25rem;
}
.ld-disp-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ld-disp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.82rem;
}
.ld-disp-item:last-child {
    border-bottom: none;
}
.ld-disp-rank {
    width: 22px;
    height: 22px;
    background: #5D3A1A;
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.ld-disp-text {
    flex: 1;
    color: #555;
    line-height: 1.3;
}
.ld-disp-count {
    font-weight: 700;
    color: #5D3A1A;
    flex-shrink: 0;
}

/* Fonte */
.ld-fonte {
    font-size: 0.78rem;
    color: #999;
    padding-top: 1rem;
    border-top: 1px solid #e8ece8;
}
.ld-fonte a {
    color: #1B4332;
    font-weight: 600;
    margin-left: 0.5rem;
}
.ld-fonte a:hover {
    color: #2E7D5B;
}

/* Responsivo landing dados */
@media (max-width: 768px) {
    .ld-dados-section {
        padding: 1.5rem;
        margin: 2rem -1rem;
        border-radius: 0;
    }
    .ld-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ld-charts-grid {
        grid-template-columns: 1fr;
    }
    .ld-sema-extras {
        grid-template-columns: 1fr;
    }
    .ld-chart-wrap {
        height: 240px;
    }
}
@media (max-width: 480px) {
    .ld-cards-grid {
        grid-template-columns: 1fr;
    }
    .ld-card-value {
        font-size: 1.25rem;
    }
}

/* Landing — conteúdo SEO (texto abaixo dos dados) */
.landing-seo-content {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}
.landing-seo-content h2:first-child,
.landing-seo-content h3:first-child {
    margin-top: 0;
}

/* =============================================
   Landing Pages de Serviço (LPs de keywords)
   ============================================= */

/* Conteúdo principal */
.lp-content {
    max-width: 840px;
}
.lp-content h2 {
    font-size: 1.5rem;
    color: #1B4332;
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}
.lp-content h3 {
    font-size: 1.2rem;
    color: #1B4332;
    margin: 2rem 0 0.75rem;
}
.lp-content ul,
.lp-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.lp-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Answer box (featured snippet / AEO) */
.lp-answer-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f0f7f3;
    border-left: 4px solid #1B4332;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0 2.5rem;
    max-width: 840px;
}
.lp-answer-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #1B4332;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 0.15rem;
}
.lp-answer-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}
.lp-answer-text p {
    margin: 0;
}
.lp-answer-text strong {
    color: #1B4332;
}

/* CTA intermediário */
.lp-cta-mid {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f7f3, #e8f0ec);
    border-radius: 12px;
    border-left: 4px solid #1B4332;
}
.lp-cta-mid-text {
    flex: 1;
}
.lp-cta-mid-text h3 {
    font-size: 1.1rem;
    color: #1B4332;
    margin: 0 0 0.5rem;
}
.lp-cta-mid-text p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}
.lp-cta-mid-action {
    flex-shrink: 0;
    text-align: center;
}
.lp-cta-mid-action .btn-cta-landing {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
}
.lp-cta-mid-sub {
    display: block;
    font-size: 0.78rem;
    color: #777;
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .lp-cta-mid {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid #1B4332;
    }
    .lp-cta-mid-action {
        width: 100%;
    }
    .lp-cta-mid-action .btn-cta-landing {
        width: 100%;
    }
}

/* Credenciais compactas */
.lp-credenciais {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}
.lp-credenciais h2 {
    font-size: 1.35rem;
    color: #1B4332;
    margin-bottom: 1.5rem;
}
.lp-credenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.lp-credencial {
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e8ece8;
}
.lp-credencial strong {
    display: block;
    font-size: 0.95rem;
    color: #1B4332;
    margin-bottom: 0.35rem;
}
.lp-credencial p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 640px) {
    .lp-credenciais-grid {
        grid-template-columns: 1fr;
    }
}

/* Páginas relacionadas */
.lp-relacionadas {
    margin: 3rem 0;
}
.lp-relacionadas h2 {
    font-size: 1.35rem;
    color: #1B4332;
    margin-bottom: 1.5rem;
}
.lp-relacionadas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.lp-relacionada-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e8ece8;
    text-decoration: none;
    transition: border-color 0.2s ease;
}
.lp-relacionada-card:hover {
    border-color: #1B4332;
}
.lp-relacionada-card h3 {
    font-size: 0.95rem;
    color: #1B4332;
    margin: 0;
    line-height: 1.4;
}
.lp-relacionada-arrow {
    color: #1B4332;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 0.75rem;
}
@media (max-width: 768px) {
    .lp-relacionadas-grid {
        grid-template-columns: 1fr;
    }
}

/* Landing — Seção "Situações que atendemos" */
.ld-situacoes {
    margin: 2.5rem 0;
}
.ld-situacoes h2 {
    font-size: 1.35rem;
    color: #1B4332;
    margin-bottom: 1.5rem;
}
.ld-situacoes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.ld-situacao-item {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e8ece8;
    transition: border-color 0.2s ease;
}
.ld-situacao-item:hover {
    border-color: #1B4332;
}
.ld-situacao-icon {
    width: 40px;
    height: 40px;
    background: #E8F0EC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B4332;
    margin-bottom: 0.75rem;
}
.ld-situacao-item strong {
    display: block;
    font-size: 1rem;
    color: #1B4332;
    margin-bottom: 0.4rem;
}
.ld-situacao-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 640px) {
    .ld-situacoes-grid {
        grid-template-columns: 1fr;
    }
}

/* Landing — Box de insight + CTA intermediário */
.ld-insight-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f7f3, #e8f0ec);
    border-radius: 12px;
    border-left: 4px solid #1B4332;
}
.ld-insight-text {
    flex: 1;
}
.ld-insight-text h3 {
    font-size: 1.1rem;
    color: #1B4332;
    margin: 0 0 0.75rem;
}
.ld-insight-text p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin: 0 0 0.5rem;
}
.ld-insight-text p:last-child {
    margin-bottom: 0;
}
.ld-insight-cta {
    flex-shrink: 0;
    text-align: center;
}
.ld-insight-cta .btn-cta-landing {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
}
.ld-insight-cta-sub {
    display: block;
    font-size: 0.78rem;
    color: #777;
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .ld-insight-box {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid #1B4332;
    }
    .ld-insight-cta {
        width: 100%;
    }
    .ld-insight-cta .btn-cta-landing {
        width: 100%;
    }
}

/* Landing — Botão secundário CTA (ligar) */
.btn-cta-landing-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: #1B4332;
    border: 2px solid #1B4332;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 0.75rem;
}
.btn-cta-landing-secondary:hover {
    background: #1B4332;
    color: #fff;
}
@media (max-width: 640px) {
    .btn-cta-landing-secondary {
        display: block;
        margin: 0.75rem auto 0;
        text-align: center;
    }
}

/* Página-pilar Advogado Ambiental */
.advamb-intro {
    max-width: 840px;
    margin: 0 auto;
}
.advamb-intro ul {
    padding-left: 1.5rem;
    margin: 1rem 0 1.5rem;
}
.advamb-intro ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.advamb-diferenciais {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.advamb-diferencial {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #1B4332;
}
.advamb-diferencial strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1B4332;
    font-size: 0.95rem;
}
.advamb-diferencial p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}
.advamb-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}
.advamb-area-card {
    display: block;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.advamb-area-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: #1B4332;
}
.advamb-area-card strong {
    display: block;
    color: #1B4332;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.advamb-area-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}
.advamb-ver-todas {
    text-align: center;
    margin-top: 1rem;
}
.advamb-estados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.advamb-estado-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.advamb-estado-card:hover {
    background: #E8F0EC;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transform: translateY(-1px);
}
.advamb-estado-uf {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B4332;
    min-width: 2rem;
}
.advamb-estado-nome {
    font-size: 0.9rem;
    color: #444;
}
.advamb-faq {
    max-width: 840px;
    margin: 1.5rem auto 0;
}
.advamb-faq .faq-item {
    border-bottom: 1px solid #E5E5E5;
    padding: 1rem 0;
}
.advamb-faq .faq-item summary {
    font-weight: 600;
    color: #1B4332;
    cursor: pointer;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.advamb-faq .faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #999;
    transition: transform 0.2s ease;
}
.advamb-faq .faq-item[open] summary::after {
    content: '-';
}
.advamb-faq .faq-item p {
    margin: 0.75rem 0 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .advamb-diferenciais {
        grid-template-columns: 1fr;
    }
    .advamb-areas-grid {
        grid-template-columns: 1fr;
    }
    .advamb-estados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lead text */
.lead-text {
    font-size: 1.1875rem;
    line-height: 1.85;
    color: #2D2D2D;
    font-weight: 400;
}

/* Escritórios grid */
.escritorios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.escritorio-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #F8FAF9;
    border-radius: 2px;
    border-top: 2px solid #1B4332;
}

.escritorio-card .cidade {
    font-weight: 700;
    color: #2D2D2D;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.escritorio-card .endereco {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

.escritorio-card .cep {
    font-size: 0.8125rem;
    color: #999;
    margin-top: 0.25rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 4.5rem 0 2rem;
    border-top: 3px solid #1B4332;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.25fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.footer-col p {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

/* Footer navigation menu */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.8;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #2E7D5B;
}

.footer-escritorios .escritorio {
    margin-bottom: 1.25rem;
}

.footer-escritorios .cidade {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.8125rem;
    display: block;
    margin-bottom: 0.2rem;
}

.footer-escritorios .endereco {
    font-size: 0.8125rem;
    color: #777;
    line-height: 1.5;
    display: block;
}

.footer-estados {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 1rem;
}
.footer-estados h4 {
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
}
.footer-estados-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-estados-list li a {
    font-size: 0.7rem;
    color: #999;
    transition: color 0.2s;
}
.footer-estados-list li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #666;
}

/* ===== PAGE TEMPLATES ===== */

/* Page Header */
.page-header-section {
    padding: 4.5rem 0 3.5rem;
    border-bottom: 1px solid #E5E5E5;
    background: linear-gradient(180deg, #FAFBFB 0%, #FFFFFF 100%);
}

.page-header-section h1 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 0.75rem;
}

.page-header-section h1::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: #1B4332;
    margin-top: 0.75rem;
}

.page-header-section .lead {
    font-size: 1.0625rem;
    color: #777;
    max-width: 600px;
    line-height: 1.7;
}

/* O Escritorio */
.escritorio-narrative {
    font-size: 1.0625rem;
    line-height: 1.85;
    max-width: 840px;
}

.escritorio-narrative p {
    margin-bottom: 1.5rem;
}

.escritorio-narrative h2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #F0F0F0;
}

.escritorio-narrative h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

/* Equipe */
.equipe-intro {
    max-width: 840px;
    margin: 0 auto 2.5rem;
    padding: 2rem 2.5rem;
    background: #F8FAF9;
    border-left: 4px solid #1B4332;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
}

.equipe-intro strong {
    color: #1B4332;
}

.socio-destaque {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 3rem;
    align-items: stretch;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.socio-destaque > div:first-child {
    position: relative;
    min-height: 350px;
}

.socio-foto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(15%);
    border-radius: 2px;
    transition: filter 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.socio-foto:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(27,67,50,0.18);
}

.socio-info h2 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.socio-cargo {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1B4332;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.socio-info p {
    font-size: 1rem;
    line-height: 1.8;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.equipe-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.2s ease;
}

.equipe-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.equipe-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.equipe-card-link:hover .equipe-foto {
    filter: grayscale(0%);
    box-shadow: 0 4px 16px rgba(27,67,50,0.15);
}

.equipe-foto {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto 1.25rem;
    filter: grayscale(10%);
    transition: filter 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #f0f0f0;
}

.equipe-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.equipe-card .cargo {
    font-size: 0.8125rem;
    color: #888;
}

/* Equipe Modal */
.equipe-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.equipe-modal-overlay.active {
    display: flex;
}

.equipe-modal {
    background: #FFFFFF;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 4px;
    padding: 3rem;
    position: relative;
}

.equipe-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}

.equipe-modal-close:hover {
    color: #2D2D2D;
}

.equipe-modal h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.equipe-modal .modal-cargo {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1B4332;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}

.equipe-modal .modal-bio p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

/* Footer Brand (logo centralizado) */
.footer-brand {
    text-align: center;
}

.footer-brand .footer-logo {
    margin-left: auto;
    margin-right: auto;
}

/* Publicacoes Page */
.pub-section-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #1B4332;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E5E5E5;
}

/* ===== PUBLICAÇÕES — CARD GRID ===== */
.pub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.pub-card {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-left: 4px solid transparent;
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pub-card:hover {
    border-left-color: #1B4332;
    border-color: #1B4332;
    background-color: #F5F9F7;
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.08);
    transform: translateY(-2px);
}

.pub-card .pub-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    background: #2D6A4F;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

.pub-card:hover .pub-badge {
    background: #1B4332;
}

.pub-card h4 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2D2D2D;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    transition: color 0.25s ease;
}

.pub-card:hover h4 {
    color: #1B4332;
}

.pub-card .pub-date {
    font-size: 0.8125rem;
    color: #999;
}

.pub-card:hover .pub-date {
    color: #1B4332;
}

/* Legacy pub-list (keep for backward compat) */
.pub-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.pub-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.pub-list li:last-child {
    border-bottom: none;
}

.pub-list a {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #2D2D2D;
    line-height: 1.5;
    transition: color 0.2s;
}

.pub-list a:hover {
    color: #1B4332;
}

.pub-list .pub-meta {
    font-size: 0.8125rem;
    color: #999;
    margin-top: 0.35rem;
}

/* Conteudos Page */
.conteudos-intro {
    max-width: 700px;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.conteudos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.conteudo-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.conteudo-card:hover {
    border-color: #1B4332;
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.08);
}

.conteudo-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
}

.conteudo-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.conteudo-badge {
    display: inline-block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1B4332;
    background: #E8F0EC;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    font-weight: 600;
}

.lead-form-section {
    background: #F8FAF9;
    padding: 3rem;
    border-radius: 4px;
    max-width: 600px;
    margin: 0 auto;
}

.lead-form-section h2 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.lead-form-section > p {
    text-align: center;
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-form label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #2D2D2D;
    display: block;
    margin-bottom: 0.25rem;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-family: 'Inter', system-ui, sans-serif;
    transition: border-color 0.2s;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: #1B4332;
}

.lead-form .btn-submit {
    background: #1B4332;
    color: #FFFFFF;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.lead-form .btn-submit:hover {
    background: #2E7D5B;
}

.lead-form-success {
    text-align: center;
    padding: 2rem;
    display: none;
}

.lead-form-success h3 {
    color: #1B4332;
    margin-bottom: 0.5rem;
}

/* Areas de Atuacao Page */
.atuacao-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #E5E5E5;
    border: 1px solid #E5E5E5;
    margin-bottom: 4rem;
}

.atuacao-item {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    transition: all 0.25s ease;
}

.atuacao-item:hover {
    background: #F5F8F7;
}

.atuacao-item h3 {
    font-size: 0.9375rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 0;
    line-height: 1.4;
}

.atuacao-item:hover h3 {
    color: #1B4332;
}

/* Etapas Processuais */
.etapas-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E5E5E5;
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.etapa-tab {
    padding: 1rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.etapa-tab:hover,
.etapa-tab.active {
    color: #1B4332;
    border-bottom-color: #1B4332;
}

.etapa-content {
    display: none;
    padding: 2rem 0;
}

.etapa-content.active {
    display: block;
}

.etapa-steps {
    counter-reset: step;
}

.etapa-step {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.25rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.etapa-step:last-child {
    border-bottom: none;
}

.etapa-step::before {
    counter-increment: step;
    content: counter(step);
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.5rem;
    color: #1B4332;
    opacity: 0.35;
    min-width: 2rem;
    text-align: center;
}

.etapa-step p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Decisoes Archive & Page */
.decisoes-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    color: #777;
    background: #F8FAF9;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: #FFFFFF;
    background: #1B4332;
    border-color: #1B4332;
}

.decisoes-counter {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 2rem;
}

.decisoes-counter strong {
    color: #1B4332;
    font-weight: 600;
}

/* H1 subtitle span */
.h1-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #999;
    margin-top: 0.25rem;
    letter-spacing: 0;
}

/* AEO Box — resposta direta para featured snippets */
.section.aeo-section {
    padding: 1.5rem 0 1rem;
    background: transparent;
}

.aeo-box {
    background: #F8FAF9;
    border-left: 4px solid #1B4332;
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 2rem;
    max-width: 840px;
}

.aeo-box h2 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #1B4332;
    margin: 0 0 0.75rem;
}

.aeo-box p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

/* Eventos */
.evento-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.evento-card:last-of-type {
    border-bottom: none;
}

.evento-date-block {
    text-align: center;
}

.evento-date-block .dia {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 2.5rem;
    color: #1B4332;
    line-height: 1;
}

.evento-date-block .mes {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    display: block;
    margin-top: 0.25rem;
}

.evento-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.evento-info .local {
    font-size: 0.8125rem;
    color: #1B4332;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.evento-tipo {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1B4332;
    background: #E8F5EE;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Livros */
.livro-destaque {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #E5E5E5;
}

.livro-destaque:last-of-type {
    border-bottom: none;
}

.livro-capa {
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
}

.livro-info h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.livro-editora {
    font-size: 0.875rem;
    color: #1B4332;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.livro-isbn {
    font-size: 0.8125rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.livro-sinopse {
    font-size: 1rem;
    line-height: 1.8;
}

.btn-comprar {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.875rem 2.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    background: #1B4332;
    border-radius: 2px;
    transition: background-color 0.25s ease;
}

.btn-comprar:hover {
    background: #2E7D5B;
    color: #FFFFFF;
}

.btn-sumario {
    display: inline-block;
    margin-top: 1.5rem;
    margin-left: 0.75rem;
    padding: 0.875rem 2.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1B4332;
    background: transparent;
    border: 2px solid #1B4332;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.btn-sumario:hover {
    background: #1B4332;
    color: #FFFFFF;
}

/* Contato */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato-form > div {
    margin-bottom: 1.25rem;
}

.contato-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #2D2D2D;
    margin-bottom: 0.5rem;
}

.contato-form input[type="text"],
.contato-form input[type="email"],
.contato-form input[type="tel"],
.contato-form textarea,
.contato-form .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    background: #FFFFFF;
    color: #444;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #1B4332;
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}

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

.contato-form .btn-enviar,
.contato-form .wpcf7-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    background: #1B4332;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.25s ease;
    font-family: inherit;
}

.contato-form .btn-enviar:hover,
.contato-form .wpcf7-submit:hover {
    background: #2E7D5B;
}

.contato-info h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.contato-info h3:not(:first-child) {
    margin-top: 2.5rem;
}

.contato-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1B4332;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.contato-whatsapp:hover {
    color: #2E7D5B;
}

.contato-whatsapp svg {
    flex-shrink: 0;
}

.contato-email {
    font-size: 1rem;
    margin-bottom: 2rem;
    display: block;
    color: #1B4332;
}

.contato-escritorios {
    margin-top: 0.5rem;
}

.contato-escritorios .escritorio {
    margin-bottom: 1.5rem;
}

.contato-escritorios .cidade {
    font-weight: 600;
    color: #2D2D2D;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.2rem;
}

.contato-escritorios .endereco {
    font-size: 0.875rem;
    color: #777;
    display: block;
}

/* ===== BLOG / SINGLE ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    border-bottom: 2px solid #E5E5E5;
    border-left: 3px solid transparent;
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    border-radius: 4px;
    transition: border-color 0.3s ease,
                border-left-color 0.3s ease,
                background-color 0.3s ease,
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.blog-card:hover {
    border-bottom-color: #1B4332;
    border-left-color: #1B4332;
    background-color: #F5F9F7;
    box-shadow: 0 6px 24px rgba(27, 67, 50, 0.08);
    transform: translateY(-3px);
}

.blog-card .date {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.blog-card:hover .date {
    color: #1B4332;
}

.blog-card h2 {
    font-size: 1.1875rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h2 a {
    color: #2D2D2D;
    transition: color 0.25s ease;
}

.blog-card:hover h2 a {
    color: #1B4332;
}

.blog-card .excerpt {
    font-size: 0.9375rem;
    color: #777;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.blog-card .leia-mais {
    display: inline-block;
    margin-top: 0.5rem;
}

/* Single Post */
.single-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.single-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.single-meta {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E5E5;
}

.single-body {
    font-size: 1.0625rem;
    line-height: 1.85;
}

.single-body h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.single-body h3 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.single-body p {
    margin-bottom: 1.5rem;
}

.single-body ul, .single-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.single-body li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.single-body ol li {
    list-style: decimal;
}

.single-body a {
    border-bottom: 1px solid rgba(27, 67, 50, 0.3);
    transition: border-color 0.2s ease;
}

.single-body a:hover {
    border-bottom-color: #1B4332;
}

.single-body img {
    margin: 2rem 0;
    border-radius: 2px;
}

.single-body blockquote {
    margin: 2.5rem 0;
}

/* WordPress content styles */
.single-body .wp-caption {
    max-width: 100%;
    margin: 2rem 0;
}

.single-body .wp-caption-text {
    font-size: 0.8125rem;
    color: #999;
    margin-top: 0.5rem;
    text-align: center;
}

.single-body .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.single-body .alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.single-body .alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

/* ===== 404 ===== */
.page-404 {
    text-align: center;
    padding: 5rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-404 h1 {
    font-size: 6rem;
    color: #E5E5E5;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.page-404 > p {
    font-size: 1.125rem;
    color: #777;
    margin-bottom: 3rem;
}

.page-404-suggestions {
    text-align: left;
    margin-bottom: 3rem;
}

.page-404-suggestions h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.page-404-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.page-404-col h3 {
    font-size: 1.125rem;
    color: #1B4332;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #E5E5E5;
}

.page-404-col ul {
    list-style: none;
    padding: 0;
}

.page-404-col li {
    padding: 0.375rem 0;
    border-bottom: 1px solid #F5F5F5;
}

.page-404-col li a {
    font-size: 0.9375rem;
    color: #444;
    transition: color 0.2s;
}

.page-404-col li a:hover {
    color: #1B4332;
}

.page-404-links {
    text-align: center;
    margin-bottom: 2rem;
}

.page-404-links h3 {
    font-size: 1.125rem;
    color: #1B4332;
    margin-bottom: 1rem;
}

.page-404-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
}

.page-404-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #555;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.page-404-nav a:hover {
    color: #1B4332;
    border-bottom-color: #1B4332;
}

.page-404-search {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.page-404-search form {
    display: flex;
    gap: 0;
}

.page-404-search input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E5E5;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9375rem;
    font-family: inherit;
}

.page-404-search button {
    padding: 0.75rem 1.5rem;
    background: #1B4332;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.page-404-search button:hover {
    background: #2E7D5B;
}

@media (max-width: 768px) {
    .page-404 { padding: 3rem 1.5rem 2rem; }
    .page-404 h1 { font-size: 4rem; }
    .page-404-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    color: #777;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.pagination a:hover,
.pagination .current {
    color: #FFFFFF;
    background: #1B4332;
    border-color: #1B4332;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-green { color: #1B4332; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== ATUACAO MODAL CARDS (Accordion) ===== */
.atuacao-grid-modal {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.atuacao-card {
    border-bottom: 1px solid #E8E8E8;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.atuacao-card:first-child {
    border-top: 1px solid #E8E8E8;
}

.atuacao-card:hover {
    background-color: #FAFBFB;
}

.atuacao-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
}

.atuacao-icon {
    flex-shrink: 0;
    width: 2.5rem;
    text-align: center;
    color: #1B4332;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atuacao-icon svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.atuacao-card:hover .atuacao-icon svg,
.atuacao-card.open .atuacao-icon svg {
    opacity: 1;
}

.atuacao-card-header h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 0;
    flex: 1;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.atuacao-card:hover .atuacao-card-header h3 {
    color: #1B4332;
}

.atuacao-toggle {
    font-size: 1.25rem;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.25s ease;
    line-height: 1;
    width: 1.5rem;
    text-align: center;
}

.atuacao-card.open .atuacao-toggle {
    transform: rotate(45deg);
    color: #1B4332;
}

.atuacao-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 1.75rem 0 4.5rem;
}

.atuacao-card.open .atuacao-card-body {
    max-height: 300px;
    padding: 0 1.75rem 1.75rem 4.5rem;
}

.atuacao-card-body p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.atuacao-card-body .btn-text {
    font-size: 0.75rem;
}

/* ===== PAGE HERO SUBTITLE ===== */
.page-hero-sub {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ESCRITORIO BADGE (Sede) ===== */
.escritorio-sede {
    border-top-width: 3px;
    background: #F2F7F5;
}

.escritorio-badge {
    display: inline-block;
    background: #1B4332;
    color: #FFFFFF;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.2rem 0.75rem;
    border-radius: 1px;
    margin-bottom: 0.75rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #FFFFFF;
    padding: 0.875rem 1.5rem 0.875rem 1.125rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: whatsappFadeIn 1s ease 1s both;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    color: #FFFFFF;
    background: #20c05c;
}

.whatsapp-float:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
    flex-shrink: 0;
}

.whatsapp-float-text {
    display: inline;
}

@keyframes whatsappFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27,67,50,0.15) 0%, rgba(0,0,0,0.1) 100%);
}

@media (max-width: 768px) {
    .parallax-divider {
        height: 180px;
        background-attachment: scroll;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LIVRO PAGE (enhanced) ===== */
.livro-destaque-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    padding: 3rem 0;
    align-items: center;
}

.livro-capa-hero {
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.livro-capa-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.livro-info .livro-selo {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1B4332;
    margin-bottom: 0.75rem;
    display: block;
}
.livro-info .livro-selo-contrib {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #555;
    background: #F0F0F0;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
    display: inline-block;
}
.livro-capa-outras {
    width: 280px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}
.livro-capa-outras:hover {
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .areas-grid,
    .atuacao-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 768px) {
    html { font-size: 15px; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }

    .container, .container-narrow {
        padding: 0 1.25rem;
    }

    .section, .section-alt, .decisoes-home {
        padding: 3.5rem 0;
    }

    /* Header mobile */
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid #E5E5E5;
        padding: 0.5rem 1.25rem 1.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid #F0F0F0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 0.875rem 0;
        font-size: 0.875rem;
    }

    .main-nav a::after {
        display: none;
    }

    /* Mobile submenu */
    .main-nav .sub-menu {
        position: static;
        transform: none;
        display: none;
        box-shadow: none;
        border-top: none;
        padding: 0;
        background: #F5F8F7;
    }

    .main-nav li:hover > .sub-menu,
    .main-nav li.open > .sub-menu {
        display: flex;
    }

    .main-nav .sub-menu a {
        padding: 0.625rem 1.5rem;
        font-size: 0.8125rem;
    }

    /* Hero Dark */
    .hero-dark {
        min-height: 70vh;
    }

    .hero-logo {
        max-width: 260px;
        margin-bottom: 2rem;
    }

    .hero-tagline {
        font-size: 1.1875rem;
        padding: 0 0.5rem;
    }

    /* Sobre Home */
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .sobre-img {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Page headers */
    .page-header-section {
        padding: 3rem 0 2.5rem;
    }

    .page-header-section h1 {
        font-size: 2rem;
    }

    /* Page Hero */
    .page-hero {
        padding: 5rem 0 3.5rem;
    }

    .page-hero h1,
    .page-hero .page-hero-title {
        font-size: 2rem;
    }

    /* Escritórios grid */
    .escritorios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Page hero sub */
    .page-hero-sub {
        font-size: 0.9375rem;
        padding: 0 1rem;
    }

    /* Atuacao cards */
    .atuacao-card-header {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }

    .atuacao-card-body {
        padding: 0 1.25rem 0 3.75rem;
    }

    .atuacao-card.open .atuacao-card-body {
        padding: 0 1.25rem 1.5rem 3.75rem;
    }

    /* WhatsApp float */
    .whatsapp-float-text {
        display: none;
    }

    .whatsapp-float {
        padding: 1rem;
        border-radius: 50%;
    }

    /* Livro hero */
    .livro-destaque-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .livro-capa-hero {
        max-width: 260px;
        margin: 0 auto;
    }

    /* Grids */
    .areas-grid,
    .atuacao-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .publicacoes-grid,
    .blog-grid,
    .pub-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .socio-destaque {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .socio-foto {
        max-width: 220px;
    }

    .equipe-foto {
        width: 140px;
        height: 140px;
    }

    .livro-destaque {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .livro-capa {
        max-width: 200px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .evento-card {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .etapas-tabs {
        gap: 0;
    }

    .etapa-tab {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    .single-content {
        padding: 3rem 1.25rem;
    }

    .single-content h1 {
        font-size: 1.75rem;
    }

    .livro-home {
        padding: 3.5rem 0;
    }

    .livro-home-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .livro-home-capa img {
        max-width: 260px;
    }

    .livro-home-texto h2 {
        font-size: 1.625rem;
    }

    .informativo-grid {
        grid-template-columns: 1fr;
    }

    .informativo-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .informativo-decisao-row {
        grid-template-columns: 45px 70px 1fr;
        gap: 0.75rem;
    }

    .institucional-home {
        padding: 5rem 0;
    }

    .institucional-home blockquote {
        font-size: 1.1875rem;
        padding: 0 1rem;
    }

    .sobre-home {
        padding: 4rem 0;
    }

    .decisao-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .areas-grid,
    .atuacao-grid {
        grid-template-columns: 1fr 1fr;
    }

    .equipe-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-inner {
        padding: 1rem 1.25rem;
    }

    .site-logo img {
        height: 28px;
    }

    .hero-logo {
        max-width: 220px;
    }

    h1 { font-size: 1.75rem; }

    .contato-whatsapp {
        font-size: 1rem;
    }

    .conteudos-grid {
        grid-template-columns: 1fr;
    }

    .lead-form-section {
        padding: 2rem 1.25rem;
    }

    .equipe-modal {
        padding: 2rem 1.25rem;
        margin: 1rem;
        max-height: 90vh;
    }
}


/* ============================================
   PAINEL DE MULTAS E EMBARGOS (Dashboard)
   ============================================ */

/* Hero */
.page-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #1B4332 100%);
    padding: 5rem 0 4rem;
    text-align: center;
}
.page-hero h1, .page-hero .page-hero-title { color: #FFFFFF; font-size: 2.5rem; margin-bottom: 0.75rem; }
.page-hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.0625rem;
    max-width: 720px; margin: 1rem auto 0;
    line-height: 1.7;
}

/* Summary Cards */
.painel-cards-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.painel-card {
    background: #FFFFFF; border: 1px solid #E5E5E5;
    border-radius: 4px; padding: 1.75rem 1.5rem; text-align: center;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s;
}
.painel-card:hover {
    border-color: #1B4332;
    box-shadow: 0 4px 16px rgba(27,67,50,0.08);
    transform: translateY(-2px);
}
.painel-card-label {
    display: block; font-size: 0.6875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #777; margin-bottom: 0.5rem;
}
.painel-card-value {
    display: block; font-family: 'PT Serif', Georgia, serif;
    font-size: 2rem; color: #1B4332; line-height: 1.2; margin-bottom: 0.4rem;
}
.painel-card-source { display: block; font-size: 0.6875rem; color: #999; }

/* Consolidadas Panel */
.painel-consolidadas {
    margin-top: 2rem; padding: 1.5rem 2rem;
    background: #F8FAF9; border: 1px solid #E5E5E5;
    border-radius: 8px; border-left: 4px solid #1B4332;
}
.painel-consolidadas h4 {
    font-family: 'PT Serif', serif; font-size: 1.15rem;
    color: #1B4332; margin: 0 0 0.5rem 0;
}
.painel-consolidadas .legenda {
    font-size: 0.85rem; color: #666; margin: 0 0 1rem 0; line-height: 1.5;
}
.painel-consolidadas .valores { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.painel-consolidadas .valor-grande {
    font-family: 'PT Serif', serif; font-size: 1.75rem;
    font-weight: 700; color: #1B4332;
}
.painel-consolidadas .valor-label {
    display: block; font-size: 0.8rem; color: #999; margin-top: 0.15rem;
}

/* Section Labels */
.painel-section-label {
    font-family: Inter, sans-serif; font-size: 0.85rem;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 1rem;
}
.painel-section-label.ibama { color: #1B4332; }
.painel-section-label.sema { color: #2E7D5B; margin-top: 2.5rem; }

/* Filter Bar */
.painel-filters { padding: 1.25rem 0; border-bottom: 1px solid #E5E5E5; }
.painel-filter-bar { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.painel-filter-label {
    font-size: 0.8125rem; font-weight: 600; color: #555;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.filter-btn {
    padding: 0.4rem 1rem; font-size: 0.8125rem;
    background: #F8FAF9; border: 1px solid #E5E5E5;
    color: #777; border-radius: 2px; cursor: pointer;
    font-family: inherit; transition: all 0.2s;
}
.filter-btn:hover { border-color: #1B4332; color: #1B4332; }
.filter-btn.active {
    background: #1B4332; color: #FFFFFF; border-color: #1B4332;
}

/* Charts */
.painel-charts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.painel-chart-card {
    background: #FFFFFF; border: 1px solid #E5E5E5;
    border-radius: 4px; padding: 1.75rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.painel-chart-card:hover {
    box-shadow: 0 6px 20px rgba(27,67,50,0.1);
    transform: translateY(-3px);
}
.painel-chart-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem; font-weight: 600; color: #2D2D2D;
    margin-bottom: 1.25rem;
}
.chart-wrapper { position: relative; width: 100%; height: 300px; }
.chart-wrapper canvas { width: 100% !important; height: 100% !important; }

/* Map */
.painel-map-grid {
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem; align-items: start;
}
.painel-map-container { position: relative; }
#brazil-map svg { width: 100%; height: auto; max-height: 550px; }
#brazil-map path {
    fill: #E8F0EC; stroke: #FFFFFF; stroke-width: 1.2;
    cursor: pointer; transition: fill 0.2s, transform 0.15s;
}
#brazil-map path:hover { opacity: 0.85; transform: scale(1.02); transform-origin: center; }
.painel-tooltip {
    position: absolute; display: none;
    background: #1A1A1A; color: #FFFFFF;
    padding: 0.75rem 1rem; border-radius: 4px;
    font-size: 0.8125rem; line-height: 1.6;
    pointer-events: none; z-index: 100;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Tables */
.painel-table { width: 100%; border-collapse: collapse; }
.painel-table th {
    text-align: left; font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #777; padding: 0.75rem 0.75rem;
    border-bottom: 2px solid #1B4332;
}
.painel-table td {
    padding: 0.625rem 0.75rem; font-size: 0.8125rem;
    border-bottom: 1px solid #F0F0F0;
    transition: background 0.2s;
}
.painel-table tr:hover td { background: #F8FAF9; }
.painel-table td:last-child, .painel-table th:last-child { text-align: right; }
.painel-table td:nth-child(2), .painel-table th:nth-child(2) { text-align: right; }
.rank-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: #E8F0EC; color: #1B4332;
    font-size: 0.625rem; font-weight: 700; margin-right: 0.4rem;
}
.uf-tag {
    display: inline-block; font-size: 0.625rem; font-weight: 600;
    color: #999; margin-left: 0.25rem;
}

/* Disclaimer */
.painel-fonte { padding: 2.5rem 0; }
.painel-disclaimer {
    font-size: 0.8125rem; color: #999;
    text-align: center; line-height: 1.75;
}

/* Sections */
.section { padding: 4rem 0; }
.section-alt { padding: 4rem 0; background: #F8FAF9; }
.section-header { text-align: left; margin-bottom: 3rem; }
.section-header .subtitle { color: #777; font-size: 1rem; margin-top: -0.75rem; }
.mt-3 { margin-top: 2rem; }

/* Painel responsive */
@media (max-width: 1024px) {
    .painel-cards-grid { grid-template-columns: repeat(3, 1fr); }
    .painel-map-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .painel-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .painel-charts-grid { grid-template-columns: 1fr; }
    .painel-card-value { font-size: 1.5rem; }
    .chart-wrapper { height: 250px; }
    .painel-filter-bar { flex-direction: column; align-items: flex-start; }
    .page-hero h1, .page-hero .page-hero-title { font-size: 1.75rem; }
    .page-hero { padding: 3rem 0 2.5rem; }
}
@media (max-width: 480px) {
    .painel-cards-grid { grid-template-columns: 1fr; }
    .painel-consolidadas .valores { flex-direction: column; gap: 1rem; }
}

/* ===== HERO SLIDESHOW KEN BURNS ===== */
.hero-slideshow {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #1A1A1A;
}

.hero-slide {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1).active { animation: kb1 8s ease-out forwards; }
.hero-slide:nth-child(2).active { animation: kb2 8s ease-out forwards; }
.hero-slide:nth-child(3).active { animation: kb3 8s ease-out forwards; }
.hero-slide:nth-child(4).active { animation: kb4 8s ease-out forwards; }
.hero-slide:nth-child(5).active { animation: kb5 8s ease-out forwards; }
.hero-slide:nth-child(6).active { animation: kb6 8s ease-out forwards; }
.hero-slide:nth-child(7).active { animation: kb7 8s ease-out forwards; }
.hero-slide:nth-child(8).active { animation: kb8 8s ease-out forwards; }
.hero-slide:nth-child(9).active { animation: kb9 8s ease-out forwards; }

@keyframes kb1 {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.1) translate(-1.5%, -0.5%); }
}

@keyframes kb2 {
    from { transform: scale(1.05) translate(1%, 0); }
    to { transform: scale(1.12) translate(-0.5%, -1%); }
}

@keyframes kb3 {
    from { transform: scale(1) translate(-0.5%, 0.5%); }
    to { transform: scale(1.08) translate(0.5%, -0.5%); }
}

@keyframes kb4 {
    from { transform: scale(1.02) translate(0.5%, -0.5%); }
    to { transform: scale(1.1) translate(-1%, 0.5%); }
}

@keyframes kb5 {
    from { transform: scale(1) translate(-1%, 0); }
    to { transform: scale(1.09) translate(0.5%, -1%); }
}

@keyframes kb6 {
    from { transform: scale(1.03) translate(0, 0.5%); }
    to { transform: scale(1.11) translate(-0.5%, -0.5%); }
}

@keyframes kb7 {
    from { transform: scale(1.01) translate(0.5%, 0.5%); }
    to { transform: scale(1.1) translate(-1%, -0.5%); }
}

@keyframes kb8 {
    from { transform: scale(1) translate(-0.5%, -0.5%); }
    to { transform: scale(1.09) translate(1%, 0.5%); }
}

@keyframes kb9 {
    from { transform: scale(1.04) translate(0, -0.5%); }
    to { transform: scale(1.12) translate(-0.5%, 0.5%); }
}

@keyframes kb10 {
    from { transform: scale(1.02) translate(-1%, 0); }
    to { transform: scale(1.1) translate(0.5%, -0.5%); }
}

.hero-slideshow .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(27,67,50,0.4) 100%);
    z-index: 2;
}

.hero-slideshow .hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 2rem;
}

/* ===== SEÇÃO DE CONTEÚDO 3 COLUNAS ===== */
.conteudo-home {
    padding: 5rem 0;
    background: #F8FAF9;
}

.conteudo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.conteudo-col {
    background: #FFFFFF;
    border-radius: 4px;
    padding: 2rem;
    border: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
}

.conteudo-col-title {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.25rem;
    color: #1B4332;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.conteudo-col-sub {
    font-size: 0.8125rem;
    color: #999;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E5E5;
}

.conteudo-item {
    padding: 0.875rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.conteudo-item:last-of-type {
    border-bottom: none;
}

.conteudo-date {
    font-size: 0.6875rem;
    color: #999;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.conteudo-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    color: #1B4332;
    background: #E8F0EC;
    padding: 0.125rem 0.5rem;
    border-radius: 2px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.conteudo-badge-pub {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    color: #777;
    background: #F0F0F0;
    padding: 0.125rem 0.5rem;
    border-radius: 2px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.conteudo-item h4 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2D2D2D;
    line-height: 1.5;
    margin-top: 0.375rem;
    margin-bottom: 0;
}

.conteudo-item h4 a {
    color: #2D2D2D;
    text-decoration: none;
    transition: color 0.2s;
}

.conteudo-item h4 a:hover {
    color: #1B4332;
}

.conteudo-empty {
    font-size: 0.875rem;
    color: #999;
    padding: 1.5rem 0;
}

.leia-mais {
    display: inline-block;
    font-size: 0.75rem;
    color: #999;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-top: auto;
    padding-top: 1.25rem;
    transition: color 0.2s;
}

.leia-mais:hover {
    color: #1B4332;
}

/* ===== TEXTO INSTITUCIONAL ÁREAS DE ATUAÇÃO ===== */
.atuacao-intro {
    padding: 3.5rem 0 0;
}

.atuacao-intro-text {
    text-align: left;
    max-width: 840px;
    margin: 0 auto;
}

.atuacao-intro-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.atuacao-intro-text p:last-child {
    margin-bottom: 0;
}

.atuacao-intro-text strong {
    color: #2D2D2D;
}

/* ===== ATUACAO ESTADOS ===== */
.atuacao-estados {
    background: #f8faf9;
}
.atuacao-estados h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}
.atuacao-estados-sub {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.atuacao-estados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.5rem 1.5rem;
}
.atuacao-estados-grid a {
    font-size: 0.875rem;
    color: #1B4332;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E5E5;
    transition: color 0.2s;
}
.atuacao-estados-grid a:hover {
    color: #2E7D5B;
}

/* ===== TEXTO INSTITUCIONAL DECISÕES ===== */
.decisoes-intro {
    padding: 0;
}

.decisoes-intro-text {
    background: #F8FAF9;
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 3px solid #1B4332;
    margin-bottom: 0;
}

.decisoes-intro-text p {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.decisoes-intro-text p:last-child {
    margin-bottom: 0;
}

.decisoes-intro-text strong {
    color: #2D2D2D;
}

.decisoes-intro-text a {
    color: #1B4332;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.decisoes-intro-text a:hover {
    color: #2E7D5B;
}

/* ===== CONTEÚDO RESPONSIVO ===== */
@media (max-width: 1024px) {
    .conteudo-grid {
        grid-template-columns: 1fr 1fr;
    }
    .conteudo-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .conteudo-grid {
        grid-template-columns: 1fr;
    }
    .conteudo-col:last-child {
        grid-column: auto;
    }
    .hero-slideshow {
        min-height: 70vh;
    }
    .atuacao-intro-text {
        text-align: left;
    }
    .decisoes-intro-text {
        padding: 1.5rem;
    }
}

/* ===== HOVER ANIMATIONS — HOME CONTENT CARDS ===== */
.conteudo-col {
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.conteudo-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(27, 67, 50, 0.12);
    border-color: #1B4332;
}

.conteudo-item {
    transition: background-color 0.25s ease,
                padding-left 0.25s ease,
                border-left 0.25s ease,
                box-shadow 0.25s ease;
    cursor: pointer;
    border-radius: 4px;
    border-left: 3px solid transparent;
}

.conteudo-item:hover {
    background-color: #F5F9F7;
    padding-left: 0.75rem;
    border-left: 3px solid #1B4332;
    box-shadow: 0 2px 8px rgba(27, 67, 50, 0.06);
}

.conteudo-item h4 a {
    transition: color 0.25s ease;
}

.conteudo-item:hover h4 a {
    color: #1B4332;
}

.conteudo-item:hover .conteudo-date {
    color: #1B4332;
}

.conteudo-item:hover .conteudo-badge,
.conteudo-item:hover .conteudo-badge-pub {
    background-color: #1B4332;
    color: #FFFFFF;
}

.conteudo-col-title {
    transition: color 0.3s ease;
}

.conteudo-col:hover .conteudo-col-title {
    color: #145028;
}

.leia-mais {
    transition: color 0.25s ease, letter-spacing 0.25s ease, padding-left 0.25s ease;
}

.leia-mais:hover {
    color: #1B4332;
    letter-spacing: 0.05em;
    padding-left: 0.25rem;
}

/* Sobre section hover */
.sobre-home .sobre-img img {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s ease;
}

.sobre-home .sobre-img:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Institucional section hover */
.institucional-home blockquote {
    transition: transform 0.4s ease;
}

.institucional-home:hover blockquote {
    transform: scale(1.01);
}

/* ===== PAINEL — ENHANCED HOVER ANIMATIONS ===== */
.painel-card {
    transition: border-color 0.3s ease,
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                background-color 0.3s ease;
    cursor: default;
}

.painel-card:hover {
    border-color: #1B4332;
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.14);
    transform: translateY(-5px);
    background-color: #FAFDF9;
}

.painel-card:hover .painel-card-value {
    color: #145028;
    transform: scale(1.03);
    transition: color 0.3s ease, transform 0.3s ease;
}

.painel-card:hover .painel-card-label {
    color: #1B4332;
    transition: color 0.3s ease;
}

.painel-card .painel-card-value {
    transition: color 0.3s ease, transform 0.3s ease;
}

.painel-chart-card {
    transition: box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.35s ease;
}

.painel-chart-card:hover {
    box-shadow: 0 12px 40px rgba(27, 67, 50, 0.14);
    transform: translateY(-5px);
    border-color: #1B4332;
}

.painel-consolidadas {
    transition: box-shadow 0.3s ease,
                transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-left-color 0.3s ease,
                background-color 0.3s ease;
}

.painel-consolidadas:hover {
    box-shadow: 0 8px 28px rgba(27, 67, 50, 0.12);
    transform: translateY(-3px);
    border-left-color: #2E7D5B;
    background-color: #FAFDF9;
}

.filter-btn {
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.filter-btn:hover {
    border-color: #1B4332;
    color: #1B4332;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.12);
    background-color: #F5F9F7;
}

/* ===== DECISÕES — SUB TEXT BELOW SUBTITLE ===== */
.decisoes-sub-text {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.8;
    max-width: 780px;
    margin-top: 1rem;
}

.decisoes-sub-text strong {
    color: #1B4332;
    font-weight: 600;
}

.decisoes-sub-text a {
    color: #1B4332;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.decisoes-sub-text a:hover {
    color: #2D6A4F;
}

/* ===== DECISÃO — LEIA MAIS LINK ===== */
.decisao-leia-mais {
    display: inline-block;
    font-size: 0.75rem;
    color: #1B4332;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 0.75rem;
    padding: 0.375rem 0;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.decisao-leia-mais:hover {
    color: #2E7D5B;
    border-bottom-color: #2E7D5B;
}

/* ===== NEWSLETTER MODAL ===== */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter-modal.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.newsletter-modal-content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    max-width: 720px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
}

.newsletter-modal.active .newsletter-modal-content {
    transform: scale(1) translateY(0);
}

.newsletter-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background 0.2s;
    line-height: 1;
}

.newsletter-modal-close:hover {
    background: #fff;
}

.newsletter-modal-body {
    display: flex;
}

.newsletter-modal-image {
    position: relative;
    width: 45%;
    min-height: 360px;
    overflow: hidden;
}

.newsletter-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-modal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.85), rgba(27, 67, 50, 0.3));
}

.newsletter-modal-image-text {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: #fff;
}

.newsletter-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
}

.newsletter-modal-image-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.newsletter-modal-form {
    width: 55%;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-modal-form h2 {
    font-size: 1.5rem;
    color: #1B4332;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.newsletter-modal-form > p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Newsletter custom form */
.nl-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nl-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #2D2D2D;
    background: #FAFAFA;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.nl-field input:focus {
    outline: none;
    border-color: #1B4332;
    box-shadow: 0 0 0 3px rgba(27,67,50,0.08);
    background: #FFF;
}

.nl-field input::placeholder {
    color: #AAA;
}

.nl-submit {
    width: 100%;
    padding: 0.8rem;
    background: #1B4332;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
    letter-spacing: 0.02em;
}

.nl-submit:hover {
    background: #2D6A4F;
}

.nl-submit:disabled {
    background: #999;
    cursor: not-allowed;
}

.nl-success {
    text-align: center;
    padding: 1.5rem 0;
}

.nl-success svg {
    margin-bottom: 0.75rem;
}

.nl-success h3 {
    color: #1B4332;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.nl-success p {
    color: #666;
    font-size: 0.875rem;
}

.newsletter-privacy {
    font-size: 0.75rem !important;
    color: #999 !important;
    margin-top: 0.5rem;
    margin-bottom: 0 !important;
}

@media (max-width: 640px) {
    .newsletter-modal-body {
        flex-direction: column;
    }
    .newsletter-modal-image {
        width: 100%;
        min-height: 160px;
    }
    .newsletter-modal-form {
        width: 100%;
        padding: 1.5rem;
    }
    .newsletter-modal-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* ===== NEWSLETTER MODAL HOME (verde escuro) ===== */
.newsletter-modal-home {
    background: linear-gradient(145deg, #1B4332 0%, #0D2818 50%, #1B4332 100%);
    max-width: 520px;
}

.newsletter-modal-home .newsletter-modal-close {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.newsletter-modal-home .newsletter-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.newsletter-modal-body-home {
    padding: 2.5rem 2.5rem 2rem;
    text-align: center;
}

.nl-home-icon {
    margin-bottom: 1rem;
}

.nl-home-badge {
    display: inline-block;
    background: rgba(149, 213, 178, 0.2);
    color: #95D5B2;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.newsletter-modal-body-home h2 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.newsletter-modal-body-home > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-modal-body-home .nl-field input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.newsletter-modal-body-home .nl-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-modal-body-home .nl-field input:focus {
    border-color: #95D5B2;
    box-shadow: 0 0 0 3px rgba(149, 213, 178, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.nl-submit-home {
    background: #95D5B2 !important;
    color: #1B4332 !important;
    font-weight: 700 !important;
    padding: 0.9rem !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
}

.nl-submit-home:hover {
    background: #A8E6C3 !important;
}

.nl-success-home h3 {
    color: #95D5B2 !important;
}

.nl-success-home p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.nl-privacy-home {
    color: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 640px) {
    .newsletter-modal-home {
        max-width: 95%;
    }
    .newsletter-modal-body-home {
        padding: 2rem 1.5rem 1.5rem;
    }
    .newsletter-modal-body-home h2 {
        font-size: 1.25rem;
    }
}

/* ===== MODAL DECISAO DO DIA ===== */
.decisao-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.decisao-modal.active {
    opacity: 1;
    visibility: visible;
}

.decisao-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.decisao-modal-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(155deg, #1B4332 0%, #0D2818 40%, #122D1F 100%);
    border-radius: 20px;
    overflow: hidden;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(149, 213, 178, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.decisao-modal.active .decisao-modal-content {
    transform: scale(1) translateY(0);
}

.decisao-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.decisao-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.decisao-modal-body {
    padding: 3rem 2.5rem 2.5rem;
    text-align: center;
    position: relative;
}

.decisao-modal-body::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(149, 213, 178, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.decisao-modal-body::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(149, 213, 178, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.decisao-modal-icon {
    margin-bottom: 1.25rem;
}

.decisao-modal-badge {
    display: inline-block;
    background: rgba(149, 213, 178, 0.15);
    color: #95D5B2;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(149, 213, 178, 0.15);
}

.decisao-modal-body h2 {
    font-family: 'PT Serif', 'Georgia', serif;
    font-size: 1.75rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.decisao-modal-body > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.decisao-modal-body strong {
    color: #fff;
    font-weight: 700;
}

.decisao-modal-sub {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem !important;
    margin-bottom: 1.75rem !important;
}

.decisao-modal-cta {
    display: inline-block;
    background: #95D5B2;
    color: #1B4332;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.decisao-modal-cta:hover {
    background: #A8E6C3;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(149, 213, 178, 0.3);
    color: #1B4332;
}

.decisao-modal-note {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
    margin-top: 1.25rem !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

.decisao-modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.decisao-modal-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(149, 213, 178, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.decisao-modal-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.decisao-modal-form input:focus {
    outline: none;
    border-color: #95D5B2;
    background: rgba(255, 255, 255, 0.12);
}

.decisao-modal-form .decisao-modal-cta {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin-top: 0.25rem;
}

.decisao-modal-form .decisao-modal-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.decisao-modal-check {
    margin-bottom: 1rem;
}

.decisao-modal-success-text {
    font-size: 1.1rem !important;
    color: #95D5B2 !important;
    font-weight: 600;
    margin-bottom: 1.5rem !important;
}

.decisao-modal-cta-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.decisao-modal-cta-link:hover {
    color: #95D5B2;
}

@media (max-width: 640px) {
    .decisao-modal-content {
        max-width: 95%;
        border-radius: 16px;
    }
    .decisao-modal-body {
        padding: 2.5rem 1.5rem 2rem;
    }
    .decisao-modal-body h2 {
        font-size: 1.4rem;
    }
    .decisao-modal-cta {
        width: 100%;
        text-align: center;
    }
}

/* ===== TOAST NEWSLETTER DECISOES ===== */
.decisao-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9998;
    background: linear-gradient(155deg, #1B4332 0%, #0D2818 100%);
    border-radius: 14px;
    width: 340px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(149, 213, 178, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.decisao-toast.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.decisao-toast-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    line-height: 1;
    padding: 4px;
}

.decisao-toast-close:hover {
    color: #fff;
}

.decisao-toast-body {
    padding: 1.25rem 1.25rem 1rem;
}

.decisao-toast-icon {
    margin-bottom: 0.5rem;
}

.decisao-toast-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    padding-right: 1.5rem;
}

.decisao-toast-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.decisao-toast-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.decisao-toast-form input {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.decisao-toast-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.decisao-toast-form input:focus {
    outline: none;
    border-color: #95D5B2;
    box-shadow: 0 0 0 2px rgba(149, 213, 178, 0.15);
    background: rgba(255, 255, 255, 0.12);
}

.decisao-toast-submit {
    width: 100%;
    padding: 0.6rem;
    background: #95D5B2;
    color: #1B4332;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
}

.decisao-toast-submit:hover {
    background: #A8E6C3;
}

.decisao-toast-submit:disabled {
    background: #666;
    color: #aaa;
    cursor: not-allowed;
}

.decisao-toast-success {
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.decisao-toast-success svg {
    margin-bottom: 0.5rem;
}

.decisao-toast-success p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .decisao-toast {
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
    }
}

/* ===== TOAST: DADOS AMBIENTAIS ===== */
.dados-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9997;
    background: linear-gradient(155deg, #0D2818 0%, #1B4332 100%);
    border: 1px solid rgba(149, 213, 178, 0.15);
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.dados-toast.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dados-toast-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.15rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
    line-height: 1;
    padding: 4px;
    z-index: 2;
}

.dados-toast-close:hover {
    color: #fff;
}

.dados-toast-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    transition: background 0.2s;
}

.dados-toast-link:hover {
    background: rgba(149, 213, 178, 0.06);
}

.dados-toast-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.dados-toast-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-right: 1rem;
}

.dados-toast-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
}

.dados-toast-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    line-height: 1.45;
}

.dados-toast-desc strong {
    color: #95D5B2;
    font-weight: 600;
}

.dados-toast-cta {
    color: #95D5B2;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 0.15rem;
    transition: color 0.2s;
}

.dados-toast-link:hover .dados-toast-cta {
    color: #A8E6C3;
}

/* Mobile compacto */
@media (max-width: 768px) {
    .dados-toast {
        right: 12px;
        left: 12px;
        bottom: 80px;
        width: auto;
        border-radius: 10px;
    }

    .dados-toast-link {
        padding: 0.75rem 1rem;
        gap: 0.6rem;
    }

    .dados-toast-icon {
        display: none;
    }

    .dados-toast-content {
        padding-right: 1.5rem;
    }

    .dados-toast-title {
        font-size: 0.8rem;
    }

    .dados-toast-desc {
        font-size: 0.75rem;
    }

    .dados-toast-cta {
        font-size: 0.75rem;
    }
}

/* ===== NEWSLETTER BANNER (Artigos/Decisoes) ===== */
.newsletter-banner {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    padding: 3rem 0;
}

.newsletter-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-banner-text h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.newsletter-banner-form {
    flex-shrink: 0;
    min-width: 420px;
}

.nl-form-inline {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: stretch;
}

.nl-form-inline .nl-field {
    flex: 1;
}

.nl-form-inline .nl-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #2D2D2D;
    background: rgba(255,255,255,0.95);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.nl-form-inline .nl-field input:focus {
    outline: none;
    border-color: #FFF;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    background: #FFF;
}

.nl-form-inline .nl-field input::placeholder {
    color: #999;
}

.nl-form-inline .nl-submit {
    width: auto;
    padding: 0.75rem 1.5rem;
    background: #FFFFFF;
    color: #1B4332;
    border: none;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nl-form-inline .nl-submit:hover {
    background: #E8F5EE;
    transform: translateY(-1px);
}

.nl-form-inline .nl-submit:disabled {
    background: rgba(255,255,255,0.5);
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.nl-success-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
}

.nl-success-banner svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .newsletter-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-banner-form {
        min-width: 0;
        width: 100%;
    }
    .nl-form-inline {
        flex-direction: column;
    }
}

/* ===== NEWSLETTER CONTATO PAGE ===== */
.newsletter-contato {
    background: #F8F9FA;
    padding: 3rem 0;
    border-top: 1px solid #E9ECEF;
}

.newsletter-contato-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-contato-text h3 {
    color: #1B4332;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-contato-text p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.newsletter-contato-form {
    flex-shrink: 0;
    min-width: 340px;
}

@media (max-width: 768px) {
    .newsletter-contato-inner {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-contato-form {
        min-width: auto;
        width: 100%;
    }
}

/* ===== CONTACT FORM (Contato Page) ===== */
.contato-form-fields .form-group {
    margin-bottom: 1.25rem;
}

.contato-form-fields label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1B4332;
    margin-bottom: 0.35rem;
}

.contato-form-fields input,
.contato-form-fields select,
.contato-form-fields textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: #333;
}

.contato-form-fields input:focus,
.contato-form-fields select:focus,
.contato-form-fields textarea:focus {
    outline: none;
    border-color: #1B4332;
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.contato-form-fields input::placeholder,
.contato-form-fields textarea::placeholder {
    color: #9CA3AF;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-enviar {
    display: inline-block;
    background: #1B4332;
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}

.btn-enviar:hover {
    background: #2D6A4F;
    transform: translateY(-1px);
}

.btn-enviar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-feedback {
    padding: 0;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    border-radius: 6px;
    display: none;
}

.form-feedback.success,
.form-feedback.error {
    display: block;
    padding: 0.75rem 1rem;
}

.form-feedback.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-feedback.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ========================================
   SEO + AEO — Breadcrumbs, TOC, FAQ, etc.
   ======================================== */

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.8125rem;
    color: #999;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.breadcrumbs a {
    color: #2D6A4F;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs .bc-sep {
    margin: 0 0.4rem;
    color: #ccc;
}
.breadcrumbs span:last-child {
    color: #666;
}

/* Single meta (autor + data + tempo leitura + atualizado) */
.single-meta {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 2rem;
}
.single-meta .meta-author {
    color: #1B4332;
    font-weight: 600;
}
.single-meta .meta-sep {
    margin: 0 0.5rem;
    color: #ccc;
}
.single-meta .updated-date {
    color: #2D6A4F;
    font-weight: 500;
}
.single-meta .reading-time {
    color: #666;
}

/* Blog card meta (autor + data) */
.blog-card-meta {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.4rem;
}
.blog-card-meta .meta-author {
    color: #1B4332;
    font-weight: 600;
}
.blog-card-meta .meta-sep {
    margin: 0 0.4rem;
    color: #ccc;
}
.blog-card-meta .date {
    color: #888;
    margin: 0;
    padding: 0;
    font-size: inherit;
}

/* Pillar Banner */
.pillar-banner {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-left: 4px solid #1B4332;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.pillar-banner a {
    color: #1B4332;
    text-decoration: none;
}
.pillar-banner a:hover {
    text-decoration: underline;
}

/* Table of Contents */
.article-toc {
    background: #F8FAF9;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}
.article-toc .toc-title {
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1B4332;
    margin-bottom: 0.75rem;
}
.article-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-toc li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #EEE;
}
.article-toc li:last-child {
    border-bottom: none;
}
.article-toc li.toc-sub {
    padding-left: 1.25rem;
    font-size: 0.9em;
}
.article-toc a {
    color: #333;
    text-decoration: none;
    font-size: 0.9375rem;
}
.article-toc a:hover {
    color: #1B4332;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #1B4332;
}
.faq-section h2 {
    font-size: 1.5rem;
    color: #1B4332;
    margin-bottom: 1.5rem;
}
.faq-item {
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    background: #FAFAFA;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}
.faq-item summary:hover {
    background: #F0FDF4;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #1B4332;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-answer {
    padding: 1rem 1.25rem;
    color: #555;
    font-size: 0.9375rem;
    line-height: 1.7;
    border-top: 1px solid #E5E5E5;
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E5;
}
.related-articles h2 {
    font-size: 1.25rem;
    color: #1B4332;
    margin-bottom: 1.25rem;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.related-card {
    display: block;
    padding: 1.25rem;
    background: #FAFAFA;
    border: 1px solid #E5E5E5;
    border-left: 3px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.related-card:hover {
    border-left-color: #1B4332;
    background: #F0FDF4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.08);
}
.related-card h3 {
    font-size: 0.9375rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.related-card .related-date {
    font-size: 0.8125rem;
    color: #999;
}

/* Navegacao entre decisoes */
.decisao-nav-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.decisao-nav-links .decisao-nav-center {
    text-align: center;
}
.decisao-nav-links .decisao-nav-right {
    text-align: right;
}

/* Link voltar para artigos */
.single-back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E5;
}

/* Cluster Articles (in pillar pages) */
.cluster-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #1B4332;
}
.cluster-articles h2 {
    font-size: 1.5rem;
    color: #1B4332;
    margin-bottom: 1.25rem;
}
.cluster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}
.cluster-card {
    display: block;
    padding: 1rem 1.25rem;
    background: #FFF;
    border: 1px solid #E5E5E5;
    border-left: 4px solid #2D6A4F;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.cluster-card:hover {
    background: #F0FDF4;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.08);
    transform: translateY(-1px);
}
.cluster-card h3 {
    font-size: 0.9375rem;
    color: #333;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}
.cluster-card span {
    font-size: 0.8125rem;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .related-grid,
    .cluster-grid {
        grid-template-columns: 1fr;
    }
    .article-toc {
        padding: 1rem;
    }
    .single-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .single-meta .meta-sep {
        display: none;
    }
}

/* ============================================
   PAINEL V2: AEO + FAQ + NOSCRIPT STYLES
   ============================================ */

/* AEO Answer Paragraphs */
.aeo-answer {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
    max-width: 840px;
    margin: 0.5rem 0 1.5rem;
    padding: 0;
}

/* SEO Intro — same width limit as AEO answers */
.painel-seo-intro p {
    max-width: 840px;
}

/* Painel: classes extraidas de inline styles */
.painel-hero-sub { max-width: 720px; margin: 1rem auto 0; line-height: 1.7; }
.painel-section-intro { padding-top: 1.5rem; padding-bottom: 0; }
.painel-seo-intro { font-size: 0.92rem; line-height: 1.75; color: #555; }
.painel-section-title { font-family: 'PT Serif', serif; font-size: 1.5rem; color: #1B4332; margin-bottom: 0.35rem; }
.painel-section-label { font-family: Inter, sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #1B4332; margin-bottom: 1rem; }
.painel-section-label--sema { color: #2E7D5B; margin-top: 2.5rem; }
.painel-consolidadas { margin-top: 2rem; padding: 1.5rem 2rem; background: #F8FAF9; border: 1px solid #E5E5E5; border-radius: 8px; border-left: 4px solid #1B4332; }
.painel-consolidadas h4 { font-family: 'PT Serif', serif; font-size: 1.15rem; color: #1B4332; margin: 0 0 0.5rem 0; }
.painel-consolidadas p { font-size: 0.85rem; color: #666; margin: 0 0 1rem 0; line-height: 1.5; }
.painel-consolidadas-values { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.painel-consolidadas-value { font-family: 'PT Serif', serif; font-size: 1.75rem; font-weight: 700; color: #1B4332; }
.painel-consolidadas-label { display: block; font-size: 0.8rem; color: #999; margin-top: 0.15rem; }
.painel-section-nopad { padding-bottom: 0; }
.painel-year-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.painel-table-title { font-family: Inter, sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; }
.painel-faq-title { font-family: 'PT Serif', serif; font-size: 1.5rem; color: #1B4332; margin-bottom: 1.5rem; }

/* Estado vazio — mensagem quando nao ha conteudo */
.empty-state { color: #999; padding: 3rem 0; text-align: center; }

/* Noscript Chart Fallback */
.chart-fallback {
    background: #F8FAF9;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}
.chart-fallback p { margin: 0; }

/* FAQ Section */
#secao-faq {
    padding: 3rem 0;
    background: #FAFCFB;
    border-top: 1px solid #E5E5E5;
}
#secao-faq h2 {
    font-family: 'PT Serif', serif;
    font-size: 1.5rem;
    color: #1B4332;
    margin-bottom: 1.5rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item summary {
    padding: 1rem 1.5rem;
    font-family: 'PT Serif', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B4332;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.faq-item summary::before {
    content: '+';
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E7D5B;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}
.faq-item[open] summary::before {
    content: '−';
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-answer {
    padding: 0 1.5rem 1.25rem 3.25rem;
    font-size: 0.92rem;
    line-height: 1.75;
    color: #555;
}
.faq-answer p { margin: 0; }

/* ===== DECISÃO COMENTADA DO DIA — v4.11.0 ===== */

.decisao-comentada-badge {
    display: inline-block;
    background-color: #D8F3DC;
    color: #1B4332;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.decisao-temas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0.75rem 0 1.5rem;
}

.decisao-tema-tag {
    display: inline-block;
    background-color: #E8F5E9;
    color: #2D6A4F;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

a.decisao-tema-tag:hover {
    background-color: #2D6A4F;
    color: #FFFFFF;
}

.decisao-ementa-box {
    border-left: 4px solid #2D6A4F;
    padding: 1.25rem 1.5rem;
    background-color: #F8FBF9;
    margin: 1.5rem 0;
    border-radius: 0 6px 6px 0;
}

.decisao-ementa-box strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2D6A4F;
    margin-bottom: 0.5rem;
}

.decisao-ementa-box p {
    margin: 0;
    font-style: italic;
    font-size: 0.94rem;
    line-height: 1.7;
    color: #374151;
}

.decisao-autor-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.25rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.decisao-autor-foto {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
}

.decisao-autor-text {
    display: flex;
    flex-direction: column;
}

.decisao-autor-label {
    font-size: 0.7rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.decisao-autor-nome {
    font-size: 1.05rem;
    color: #1B4332;
    margin: 2px 0;
}

.decisao-autor-desc {
    font-size: 0.82rem;
    color: #6B7280;
}

.decisao-livro-cta {
    background-color: #F8FBF9;
    border: 1px solid #D1E7DD;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 2.5rem 0;
}

.decisao-livro-cta p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #374151;
}

.decisao-livro-cta a {
    color: #2D6A4F;
    font-weight: 600;
    text-decoration: underline;
}

.decisao-livro-cta a:hover {
    color: #1B4332;
}

.decisao-newsletter-inline {
    background-color: #1B4332;
    color: #FFFFFF;
    border-radius: 10px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.decisao-newsletter-inline h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.5rem;
}

.decisao-newsletter-inline p {
    font-size: 0.9rem;
    color: #D8F3DC;
    margin: 0 0 1.25rem;
    line-height: 1.6;
}

.btn-newsletter {
    display: inline-block;
    background-color: #2D6A4F;
    color: #FFFFFF;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-newsletter:hover {
    background-color: #40916C;
    color: #FFFFFF;
}

.decisao-pdf-download {
    margin: 1.5rem 0;
}

.btn-pdf-download {
    display: inline-flex;
    align-items: center;
    background-color: #F8FBF9;
    border: 1px solid #D1E7DD;
    color: #1B4332;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-pdf-download:not(:has(svg))::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231B4332' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='12' y1='18' x2='12' y2='12'/%3E%3Cpolyline points='9 15 12 18 15 15'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-pdf-download:hover {
    background-color: #D8F3DC;
    border-color: #2D6A4F;
    color: #1B4332;
}

/* Author box — decisao comentada */
.decisao-autor-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #F8FBF9;
    border: 1px solid #D1E7DD;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.decisao-autor-box-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #D1E7DD;
}

.decisao-autor-box-content {
    display: flex;
    flex-direction: column;
}

.decisao-autor-box-label {
    font-size: 0.7rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.decisao-autor-box-nome {
    font-size: 1.1rem;
    color: #1B4332;
    margin-bottom: 6px;
}

.decisao-autor-box-bio {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.decisao-autor-box-bio em {
    color: #2D6A4F;
}

/* Responsivo — decisao comentada */
@media (max-width: 768px) {
    .decisao-autor-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .decisao-newsletter-inline {
        padding: 1.5rem;
    }
    .decisao-ementa-box {
        padding: 1rem;
    }
    .decisao-autor-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===================================
   PAGINA DE PESQUISA
   =================================== */

.pesquisa-input-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.pesquisa-input-wrapper .pesquisa-lupa {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

#pesquisaInput {
    width: 100%;
    padding: 1rem 1rem 1rem 48px;
    font-size: 1.05rem;
    font-family: 'Inter', system-ui, sans-serif;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    background: #FAFAFA;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#pesquisaInput:focus {
    outline: none;
    border-color: #1B4332;
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
    background: #fff;
}

#pesquisaInput::placeholder {
    color: #AAA;
}

.pesquisa-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.pesquisa-filtros {
    position: sticky;
    top: 100px;
}

.pesquisa-filtro-grupo {
    margin-bottom: 1.5rem;
}

.pesquisa-filtro-grupo h4 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6B7280;
    margin: 0 0 0.6rem;
}

.pesquisa-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pesquisa-chips-scroll {
    max-height: 200px;
    overflow-y: auto;
}

.pesquisa-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #F3F4F6;
    color: #374151;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    cursor: pointer;
    transition: all 0.2s;
}

.pesquisa-chip:hover {
    background: #E8F5E9;
    border-color: #D1E7DD;
    color: #1B4332;
}

.pesquisa-chip.active {
    background: #1B4332;
    color: #FFFFFF;
    border-color: #1B4332;
}

.chip-count {
    font-size: 0.7rem;
    opacity: 0.6;
}

.pesquisa-chip.active .chip-count {
    opacity: 0.8;
}

.pesquisa-resultados {
    min-height: 300px;
}

.pesquisa-status {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.pesquisa-status p {
    margin: 0;
    font-size: 0.95rem;
}

.pesquisa-total {
    font-size: 0.88rem;
    color: #6B7280;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E5E5E5;
}

.pesquisa-total strong {
    color: #1B4332;
}

.pesquisa-resultado {
    display: block;
    padding: 1.25rem 0;
    border-bottom: 1px solid #F3F4F6;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s;
}

.pesquisa-resultado:hover {
    background-color: #F8FBF9;
    margin: 0 -1rem;
    padding: 1.25rem 1rem;
    border-radius: 8px;
}

.pesquisa-resultado-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.4rem;
}

.pesquisa-tipo-badge {
    display: inline-block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
}

.pesquisa-tipo-badge.tipo-decisao {
    background: #E8F5E9;
    color: #2D6A4F;
}

.pesquisa-tipo-badge.tipo-artigo {
    background: #EDE9FE;
    color: #6D28D9;
}

.pesquisa-resultado-meta {
    font-size: 0.8rem;
    color: #999;
}

.pesquisa-resultado h3 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B4332;
    margin: 0.3rem 0;
    line-height: 1.4;
}

.pesquisa-resultado:hover h3 {
    color: #2E7D5B;
}

.pesquisa-resultado p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pesquisa-load-more {
    text-align: center;
    margin-top: 2rem;
}

.pesquisa-load-more button {
    background: #1B4332;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.pesquisa-load-more button:hover {
    background: #2E7D5B;
}

.pesquisa-loading {
    text-align: center;
    padding: 2rem;
    color: #999;
}

/* Campo de busca inline (archive-decisao, index) */
.aeo-section + .section {
    padding-top: 2rem;
}

.archive-search-bar {
    margin-bottom: 1.5rem;
}

.archive-search-bar form {
    display: flex;
    gap: 8px;
}

.archive-search-bar input[type="text"] {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-family: 'Inter', system-ui, sans-serif;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #FAFAFA;
    transition: border-color 0.2s;
}

.archive-search-bar input[type="text"]:focus {
    outline: none;
    border-color: #1B4332;
    background: #fff;
}

.archive-search-bar button {
    background: #1B4332;
    color: #fff;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.archive-search-bar button:hover {
    background: #2E7D5B;
}

/* Pesquisa — Responsivo */
@media (max-width: 768px) {
    .pesquisa-wrapper {
        grid-template-columns: 1fr;
    }
    .pesquisa-filtros {
        position: static;
    }
    .pesquisa-chips-scroll {
        max-height: none;
        overflow: visible;
    }
    #pesquisaInput {
        font-size: 1rem;
        padding: 0.85rem 0.85rem 0.85rem 42px;
    }
    .pesquisa-resultado:hover {
        margin: 0;
        padding: 1.25rem 0;
    }
}

/* ===================================
   SINGLE ARTIGO — CATEGORIAS + TAGS
   =================================== */

.single-categorias {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.single-categoria-badge {
    display: inline-block;
    background: #E8F0EC;
    color: #1B4332;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s, color 0.2s;
}

.single-categoria-badge:hover {
    background: #1B4332;
    color: #FFFFFF;
}

.single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 800px;
    margin: 2.5rem auto 0;
    padding: 1.5rem 0;
    border-top: 1px solid #E5E5E5;
}

.single-tags-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-tag {
    display: inline-block;
    background: #F5F5F5;
    color: #666;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.single-tag:hover {
    background: #1B4332;
    color: #FFFFFF;
}

/* ===================================
   BLOG CARD — BADGE DE CATEGORIA
   =================================== */

.blog-card-categoria {
    display: inline-block;
    background: #E8F0EC;
    color: #1B4332;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    transition: background-color 0.2s, color 0.2s;
}

.blog-card-categoria:hover {
    background: #1B4332;
    color: #FFFFFF;
}

/* ===================================
   DECISAO CARD — TEMAS NA LISTAGEM
   =================================== */

.decisao-card-temas {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 4px;
}

.decisao-card-tema {
    display: inline-block;
    background: #E8F0EC;
    color: #2D6A4F;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.decisao-card-tema:hover {
    background: #2D6A4F;
    color: #FFFFFF;
}

/* ===================================
   PROTECAO DE CONTEUDO — ANTI-COPIA
   =================================== */

/* Bloqueia selecao de texto em paginas de conteudo */
body.single .entry-content,
body.single .decisao-ementa-box,
body.single .decisao-autor-box,
body.single article,
body.single .single-content,
body.single-decisao .entry-content,
body.single-decisao article {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Permite selecao em formularios, inputs e areas interativas */
body.single input,
body.single textarea,
body.single select,
body.single .nl-form-inline,
body.single .form-feedback,
body.single code,
body.single pre {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* ── Modal: Dados da Semana (/dadosambientais/) ── */

.dados-semana-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.dados-semana-modal.active {
    opacity: 1;
    visibility: visible;
}

.dados-semana-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.dados-semana-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(155deg, #1B4332 0%, #0D2818 40%, #122D1F 100%);
    border-radius: 20px;
    overflow: hidden;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(149, 213, 178, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dados-semana-modal.active .dados-semana-content {
    transform: scale(1) translateY(0);
}

.dados-semana-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.dados-semana-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.dados-semana-body {
    padding: 3rem 2.5rem 2.5rem;
    text-align: center;
    position: relative;
}

.dados-semana-body::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(149, 213, 178, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dados-semana-icon {
    margin-bottom: 1rem;
}

.dados-semana-body h2 {
    font-family: 'PT Serif', 'Georgia', serif;
    font-size: 1.75rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.dados-semana-texto {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.dados-semana-texto strong {
    color: #fff;
    font-weight: 700;
}

.dados-semana-texto span {
    color: #95D5B2;
    font-weight: 700;
}

.dados-semana-cta-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
    font-style: italic;
}

.dados-semana-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.dados-semana-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(149, 213, 178, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.dados-semana-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.dados-semana-form input:focus {
    outline: none;
    border-color: #95D5B2;
    background: rgba(255, 255, 255, 0.12);
}

.dados-semana-cta {
    display: inline-block;
    background: #95D5B2;
    color: #1B4332;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin-top: 0.25rem;
}

.dados-semana-cta:hover {
    background: #A8E6C3;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(149, 213, 178, 0.3);
    color: #1B4332;
}

.dados-semana-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.dados-semana-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-style: italic;
}

.dados-semana-check {
    margin-bottom: 1rem;
}

.dados-semana-success-text {
    font-size: 1.1rem;
    color: #95D5B2;
    font-weight: 600;
}

@media (max-width: 640px) {
    .dados-semana-content {
        max-width: 95%;
        border-radius: 16px;
    }
    .dados-semana-body {
        padding: 2.5rem 1.5rem 2rem;
    }
    .dados-semana-body h2 {
        font-size: 1.4rem;
    }
    .dados-semana-texto {
        font-size: 0.9rem;
    }
}

/* ═══════════════════════════════════════════
   INFORMATIVOS DE FISCALIZAÇÃO — v2
   ═══════════════════════════════════════════ */

/* Hero */
.inf-hero {
    padding: 6rem 0 4rem !important;
    background: linear-gradient(160deg, #0D2818 0%, #1B4332 40%, #183D2F 100%) !important;
    position: relative;
}
.inf-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(149,213,178,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.inf-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(149,213,178,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.inf-hero-icon {
    margin-bottom: 1.25rem;
    opacity: 0.85;
}
.inf-hero .page-hero-title {
    font-size: 2.5rem !important;
    margin-bottom: 0 !important;
    letter-spacing: -0.02em;
}
.inf-hero-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #2E7D5B, #95D5B2);
    margin: 1.25rem auto;
    border-radius: 2px;
}
.inf-hero .page-hero-sub {
    max-width: 680px !important;
    margin: 0 auto !important;
    font-size: 1rem !important;
    line-height: 1.7;
    color: rgba(255,255,255,0.7) !important;
}
.inf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.375rem 1rem;
    background: rgba(149,213,178,0.12);
    border: 1px solid rgba(149,213,178,0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #95D5B2;
    font-weight: 500;
}
.inf-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.inf-hero-stat {
    text-align: center;
}
.inf-hero-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.inf-hero-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    margin-top: 0.25rem;
}
.inf-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
@media (max-width: 768px) {
    .inf-hero {
        padding: 4rem 0 3rem !important;
    }
    .inf-hero .page-hero-title {
        font-size: 1.75rem !important;
    }
    .inf-hero-stats {
        gap: 1.25rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    .inf-hero-stat-value {
        font-size: 1.25rem;
    }
    .inf-hero-stat-label {
        font-size: 0.65rem;
    }
}
@media (max-width: 480px) {
    .inf-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .inf-hero-stat-divider {
        display: none;
    }
    .inf-hero-stat {
        flex: 1;
        min-width: 80px;
    }
}

/* Intro */
.inf-intro {
    padding: 2.5rem 0 0;
}
.inf-intro p {
    max-width: 840px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* Controles — barra sticky */
.inf-controls {
    position: sticky;
    top: 60px;
    z-index: 90;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #E5E5E5;
    padding: 0.75rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.inf-controls-inner {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Tabs */
.inf-tabs {
    display: flex !important;
    gap: 0.375rem;
}
.inf-tab {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1.5px solid #D0D0D0;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}
.inf-tab:hover {
    color: #1B4332;
    border-color: #1B4332;
    background: rgba(27,67,50,0.04);
}
.inf-tab.active {
    background: #1B4332;
    color: #fff;
    border-color: #1B4332;
    box-shadow: 0 2px 8px rgba(27,67,50,0.25);
}

/* Month select */
.inf-month-select select {
    padding: 0.5rem 2.25rem 0.5rem 0.875rem;
    border: 1.5px solid #D0D0D0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #333;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
}
.inf-month-select select:hover {
    border-color: #1B4332;
}
.inf-month-select select:focus {
    outline: none;
    border-color: #1B4332;
    box-shadow: 0 0 0 3px rgba(27,67,50,0.12);
}

/* PDF button */
.inf-pdf-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #1B4332, #2E7D5B);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-left: auto;
    box-shadow: 0 2px 6px rgba(27,67,50,0.2);
}
.inf-pdf-btn:hover {
    background: linear-gradient(135deg, #2E7D5B, #3a9d6e);
    box-shadow: 0 4px 12px rgba(27,67,50,0.3);
    transform: translateY(-1px);
}
.inf-pdf-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}
.inf-pdf-btn svg {
    flex-shrink: 0;
}

/* Section */
.inf-section {
    padding: 2.5rem 0;
}
.inf-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1B4332;
    margin-bottom: 1.5rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid #1B4332;
    display: inline-block;
}

/* Cards Grid */
.inf-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.125rem !important;
}
.inf-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    padding: 1.375rem 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.inf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B4332, #2E7D5B);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.inf-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(27,67,50,0.1);
}
.inf-card:hover::before {
    opacity: 1;
}
.inf-card-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin-bottom: 0.625rem;
}
.inf-card-value {
    display: block;
    font-size: 1.625rem;
    font-weight: 700;
    color: #1B4332;
    line-height: 1.15;
    margin-bottom: 0.375rem;
}
.inf-card-var {
    display: block;
    font-size: 0.6875rem;
    color: #999;
    min-height: 1rem;
}
.inf-card-var.inf-var-up {
    color: #2E7D5B;
    font-weight: 600;
}
.inf-card-var.inf-var-up::before {
    content: '\25B2 ';
    font-size: 0.5rem;
}
.inf-card-var.inf-var-down {
    color: #DC3545;
    font-weight: 600;
}
.inf-card-var.inf-var-down::before {
    content: '\25BC ';
    font-size: 0.5rem;
}
.inf-card-var-detail {
    font-weight: 500;
    color: #555;
}

/* Extras Grid */
.inf-extras {
    padding: 0 0 1.5rem;
}
.inf-extras-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.125rem !important;
}
.inf-extra-card {
    background: linear-gradient(145deg, #F8FAF9 0%, #E8F0EC 100%);
    border-radius: 14px;
    padding: 1.375rem;
    text-align: center;
    border: 1px solid rgba(27,67,50,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.inf-extra-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27,67,50,0.08);
}
.inf-extra-icon {
    display: block;
    font-size: 1.625rem;
    margin-bottom: 0.625rem;
}
.inf-extra-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1B4332;
    margin-bottom: 0.375rem;
}
.inf-extra-value {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1B4332;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.inf-extra-desc {
    display: block;
    font-size: 0.625rem;
    color: #777;
}

/* Charts Grid */
.inf-charts-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
}
.inf-chart-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    transition: box-shadow 0.25s ease;
}
.inf-chart-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.inf-chart-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}
.inf-chart-wrap {
    position: relative;
    height: 280px;
}
.inf-chart-wrap-doughnut {
    height: 260px;
    max-width: 320px;
    margin: 0 auto;
}

/* Table */
.inf-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.inf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}
.inf-table th {
    text-align: left;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1B4332;
    padding: 0.875rem 1rem;
    border-bottom: 2px solid #E5E5E5;
    background: #F8FAF9;
}
.inf-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #F0F0F0;
    color: #444;
}
.inf-table tr:hover td {
    background: #F4F8F6;
}
.inf-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    background: #1B4332;
    color: #fff;
    border-radius: 50%;
    font-size: 0.625rem;
    font-weight: 700;
}
.inf-table tr:nth-child(1) .inf-rank { background: linear-gradient(135deg, #FFD700, #FFC107); color: #333; }
.inf-table tr:nth-child(2) .inf-rank { background: linear-gradient(135deg, #C0C0C0, #A8A8A8); color: #333; }
.inf-table tr:nth-child(3) .inf-rank { background: linear-gradient(135deg, #CD7F32, #B8722D); color: #fff; }
.inf-uf {
    color: #999;
    font-size: 0.75rem;
}

/* YTD */
.inf-ytd {
    background: linear-gradient(180deg, #F8FAF9, #F0F5F2);
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
.inf-ytd-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
}
.inf-ytd-orgao {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1B4332;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1B4332;
}
.inf-ytd-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.875rem !important;
}
.inf-ytd-item {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 1.125rem;
    transition: box-shadow 0.2s ease;
}
.inf-ytd-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.inf-ytd-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B4332;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.inf-ytd-label {
    display: block;
    font-size: 0.6875rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* FAQ */
.inf-faq .faq-item {
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.inf-faq .faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.inf-faq .faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1B4332;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.inf-faq .faq-item summary::before {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: #1B4332;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}
.inf-faq .faq-item[open] summary::before {
    content: '-';
}
.inf-faq .faq-item summary::-webkit-details-marker {
    display: none;
}
.inf-faq .faq-answer {
    padding: 0 1.25rem 1.25rem 3rem;
    color: #555;
    line-height: 1.75;
    font-size: 0.9375rem;
}

/* Responsivo */
@media (max-width: 1024px) {
    .inf-cards-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .inf-extras-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
    .inf-controls {
        position: static;
    }
    .inf-controls-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .inf-tabs {
        justify-content: center;
    }
    .inf-pdf-btn {
        margin-left: 0;
        justify-content: center;
    }
    .inf-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .inf-extras-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .inf-charts-grid {
        grid-template-columns: 1fr !important;
    }
    .inf-ytd-grid {
        grid-template-columns: 1fr !important;
    }
    .inf-card-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .inf-cards-grid {
        grid-template-columns: 1fr !important;
    }
    .inf-extras-grid {
        grid-template-columns: 1fr !important;
    }
    .inf-ytd-cards {
        grid-template-columns: 1fr !important;
    }
    .inf-chart-wrap {
        height: 220px;
    }
}

/* ========================================
   GEOPORTAL AMBIENTAL (SpectraX)
   ======================================== */

.geo-wrapper {
    position: relative;
    height: calc(100vh - 80px);
    overflow: hidden;
}

/* Map fullscreen */
#geo-map {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.leaflet-control-zoom { border: none !important; box-shadow: 0 2px 12px rgba(0,0,0,0.18) !important; border-radius: 10px !important; overflow: hidden; }
.leaflet-control-zoom a { width: 36px !important; height: 36px !important; line-height: 36px !important; font-size: 18px !important; color: #333 !important; }
.leaflet-control-attribution { font-size: 10px !important; background: rgba(255,255,255,0.7) !important; }

/* Welcome overlay */
.geo-welcome {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    left: 440px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.5s;
}
.geo-welcome.hidden { opacity: 0; }
.geo-welcome-card {
    background: rgba(27, 67, 50, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 12px 50px rgba(0,0,0,0.3);
}
.geo-welcome-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.geo-welcome-icon svg { width: 32px; height: 32px; }
.geo-welcome-card h2 {
    font-family: 'PT Serif', serif;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 0 0.5rem;
}
.geo-welcome-card > p {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.geo-welcome-steps {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
}
.geo-welcome-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
}
.geo-step-num {
    width: 26px; height: 26px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* Search panel */
.geo-search-panel {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 100;
    width: 400px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: calc(100% - 32px);
}
.geo-panel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.15rem;
    background: linear-gradient(135deg, #1B4332, #2a5e45);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}
.geo-panel-header svg { stroke: #fff; flex-shrink: 0; }

/* Tabs */
.geo-stabs {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}
.geo-stab {
    flex: 1;
    padding: 0.7rem 0.5rem;
    background: #fafafa;
    border: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    font-family: 'Inter', sans-serif;
}
.geo-stab:hover { color: #1B4332; background: #f0f4f2; }
.geo-stab.active { color: #1B4332; background: #fff; border-bottom-color: #2E7D5B; }
.geo-stab svg { width: 16px; height: 16px; }

/* Form panels */
.geo-spanel { display: none; padding: 1.15rem; }
.geo-spanel.active { display: block; }
.geo-spanel label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #777;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.geo-sinput-wrap { display: flex; gap: 0.5rem; }
.geo-sinput-wrap input {
    flex: 1;
    padding: 0.7rem 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    outline: none;
}
.geo-sinput-wrap input:focus { border-color: #2E7D5B; }
.geo-sbtn {
    padding: 0.7rem 1.15rem;
    background: #1B4332;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.geo-sbtn:hover { background: #2E7D5B; }
.geo-sbtn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Results */
.geo-sresult {
    display: none;
    margin-top: 0.85rem;
    padding: 0.9rem;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.6;
    animation: geoFadeIn 0.3s ease;
}
@keyframes geoFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.geo-sresult-ok {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border: 1px solid #81C784;
    color: #2E7D32;
}
.geo-sresult-pendencia {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border: 1px solid #FFB74D;
    color: #E65100;
}
.geo-sresult-error {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    border: 1px solid #EF9A9A;
    color: #C62828;
}
.geo-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
    padding: 0.55rem 1rem;
    background: #25D366;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.geo-btn-whatsapp:hover { background: #1DA851; color: #fff !important; }
.geo-btn-whatsapp svg { width: 16px; height: 16px; fill: #fff; }

/* Panel footer */
.geo-panel-footer {
    padding: 0.75rem 1.15rem;
    border-top: 1px solid #eee;
    background: #fafbfa;
}
.geo-panel-source {
    font-size: 0.68rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.geo-panel-source a { color: #2E7D5B; }
.geo-panel-partner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    margin-top: 0.5rem;
    background: #1B4332;
    border-radius: 8px;
}
.geo-panel-partner span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.geo-panel-partner img {
    height: 20px;
}
.geo-panel-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    padding: 0.55rem 0.85rem;
    background: #1B4332;
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    justify-content: center;
}
.geo-panel-cta:hover { background: #2E7D5B; color: #fff !important; }
.geo-panel-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Layer switcher */
.geo-layers {
    position: absolute;
    bottom: 16px; right: 16px;
    z-index: 100;
    display: flex;
    gap: 4px;
}
.geo-layer-btn {
    padding: 0.45rem 0.8rem;
    background: rgba(255,255,255,0.92);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    color: #555;
}
.geo-layer-btn:hover { border-color: #2E7D5B; color: #1B4332; }
.geo-layer-btn.active { border-color: #1B4332; background: #1B4332; color: #fff; }

/* Coordinates */
.geo-coords {
    position: absolute;
    bottom: 10px; left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(0,0,0,0.6);
    color: #ccc;
    padding: 0.2rem 0.7rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-family: monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .geo-wrapper { height: calc(100vh - 60px); }
    .geo-search-panel {
        top: auto; bottom: 0; left: 0; right: 0;
        width: 100%;
        border-radius: 18px 18px 0 0;
        max-height: 50vh;
        overflow-y: auto;
    }
    .geo-welcome { display: none; }
    .geo-layers { bottom: auto; top: 10px; right: 10px; }
    .geo-coords { display: none; }
    .geo-sinput-wrap { flex-direction: column; }
    .geo-sbtn { width: 100%; }
}
