/* ─── VARIÁVEIS ─── */
:root {
  --navy: #0D1B2A;
  --navy-mid: #162032;
  --navy-light: #1e2f45;
  --gold: #F16136;
  --gold-light: #F59B7F;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --text-dark: #0D1B2A;
  --text-mid: #3a4a5c;
  --text-light: #7a8fa6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, .serif { font-family: "Poppins", sans-serif; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NOISE OVERLAY ─── */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ─── NAV ─── */
#navbar {
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13, 27, 42, 0.97) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.nav-link {
  position: relative;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* ─── HERO ─── */
.hero-bg {
  background: linear-gradient(135deg, #0a1520 0%, #0D1B2A 40%, #162032 70%, #1a2a3d 100%);
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 21, 32, 0.78) 0%, rgba(13, 27, 42, 0.65) 45%, rgba(22, 32, 50, 0.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orb-float 8s ease-in-out infinite;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: line-grow 2s ease forwards 0.8s;
}
@keyframes line-grow {
  to { height: 80px; }
}

.hero-badge {
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.08);
  backdrop-filter: blur(10px);
}

/* ─── FADE IN ─── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.15s; }
.fade-up.delay-2 { transition-delay: 0.3s; }
.fade-up.delay-3 { transition-delay: 0.45s; }
.fade-up.delay-4 { transition-delay: 0.6s; }

/* ─── NUMBERS ─── */
.stat-card {
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(241,97,54,0.79);
  transition: all 0.4s ease;
}
.hero-stats .stat-card {
  text-align: center;
}
.hero-stats .counter-num {
  font-size: clamp(2.1rem, 3.4vw, 2.75rem);
  line-height: 1;
}
.stat-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-4px);
}

/* ─── SERVICES ─── */
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(13,27,42,0.12);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-number {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  transition: color 0.4s;
}
.service-card:hover .service-number { color: rgba(201,168,76,0.25); }

.service-navy-hover {
  background: #fff;
}
.service-card.service-navy-hover:hover {
  background: var(--navy);
}
.service-navy-hover h3.service-card-heading {
  color: var(--navy);
  transition: color 0.45s ease;
}
.service-navy-hover:hover h3.service-card-heading {
  color: #fff;
}
.service-navy-hover p.service-card-body {
  color: var(--text-mid);
  transition: color 0.45s ease;
}
.service-navy-hover:hover p.service-card-body {
  color: rgba(255,255,255,0.65);
}
.service-navy-hover li.service-card-item {
  color: var(--text-light);
  transition: color 0.45s ease;
}
.service-navy-hover:hover li.service-card-item {
  color: rgba(255,255,255,0.4);
}

/* ─── DEPOIMENTOS ─── */
.testimonial-viewport {
  container-type: inline-size;
  container-name: testimonial;
  width: 100%;
}
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  flex-shrink: 0;
  min-width: 0;
  box-sizing: border-box;
  width: min(360px, calc(100vw - 3rem));
  background: #fff;
  border: 1px solid rgba(13,27,42,0.08);
  transition: background 0.45s ease, border-color 0.45s ease;
}
@container testimonial (min-width: 640px) {
  .testimonial-card {
    width: calc((100cqi - 1.5rem) / 2);
  }
}
@container testimonial (min-width: 1024px) {
  .testimonial-card {
    width: calc((100cqi - 3rem) / 3);
  }
}
.testimonial-card:hover {
  background: var(--navy);
  border-color: rgba(201,168,76,0.22);
}
.testimonial-card .t-text {
  color: var(--text-mid);
  transition: color 0.45s ease;
}
.testimonial-card:hover .t-text {
  color: rgba(255,255,255,0.78);
}
.testimonial-card .t-footer {
  border-color: rgba(13,27,42,0.08);
  transition: border-color 0.45s ease;
}
.testimonial-card:hover .t-footer {
  border-color: rgba(255,255,255,0.12);
}
.testimonial-card .t-name {
  color: var(--navy);
  transition: color 0.45s ease;
}
.testimonial-card:hover .t-name {
  color: #fff;
}
.testimonial-card .t-role {
  color: var(--text-light);
  transition: color 0.45s ease;
}
.testimonial-card:hover .t-role {
  color: rgba(255,255,255,0.45);
}
.quote-mark {
  font-family: "Poppins", sans-serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
}

/* ─── CTA SECTION ─── */
.cta-bg {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2236 50%, var(--navy-light) 100%);
}
.cta-border {
  border: 1px solid rgba(201,168,76,0.25);
}

/* ─── BTN ─── */
.btn-gold {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold:hover { transform: translateY(-2px); background: #D94E28; color: #1E2F45; }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline {
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 36px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ─── DIVIDER ─── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ─── FLOATING WHATSAPP ─── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: pulse-green 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.7); }
}

/* ─── HERO TEXT ANIMATIONS ─── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fade-in-up 0.9s ease forwards; }
.anim-2 { animation: fade-in-up 0.9s ease forwards 0.2s; opacity: 0; }
.anim-3 { animation: fade-in-up 0.9s ease forwards 0.4s; opacity: 0; }
.anim-4 { animation: fade-in-up 0.9s ease forwards 0.6s; opacity: 0; }
.anim-5 { animation: fade-in-up 0.9s ease forwards 0.8s; opacity: 0; }

/* ─── SECTION LABEL ─── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ─── PIONEIRO STRIP ─── */
.pioneer-strip {
  background: var(--gold);
  color: var(--cream);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── FOOTER ─── */
.footer-bg {
  background: #080f18;
}
.footer-link {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--gold); }

/* ─── MOBILE MENU ─── */
#mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#mobile-menu.open { transform: translateX(0); }

/* ─── COUNTER ─── */
.counter-num { font-family: "Poppins", sans-serif; }

/* ═══════════════════════════════════════════
   PÁGINAS INTERNAS (Sobre / Contato / Serviços)
═══════════════════════════════════════════ */

/* Breadcrumb separator */
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ─── CARD HOVER (Missão/Visão/Valores) ─── */
.card-hover {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(13,27,42,0.1);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(13,27,42,0.12);
  border-color: rgba(241,97,54,0.3);
}
.card-hover img { transition: transform 0.5s ease; }
.card-hover:hover img { transform: scale(1.04); }

/* ─── STAT CARD OUTLINE (página Sobre — números) ─── */
.stat-card-outline {
  border: 1px solid rgba(241,97,54,0.2);
  background: rgba(241,97,54,0.05);
  transition: all 0.4s ease;
}
.stat-card-outline:hover {
  border-color: var(--gold);
  background: rgba(241,97,54,0.1);
  transform: translateY(-4px);
}

/* ─── DIF-CARD (Diferenciais — página Sobre) ─── */
.dif-card {
  background: white;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.45s ease;
  position: relative;
}
.dif-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.dif-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(13,27,42,0.1); border-color: rgba(241,97,54,0.25); }
.dif-card:hover::after { transform: scaleX(1); }
.dif-card img { transition: transform 0.5s ease; display: block; width: 100%; height: 100%; object-fit: cover; }
.dif-card:hover img { transform: scale(1.05); }

/* Nav link ativo */
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

/* Divider centralizado */
.gold-divider-center { width: 80px; height: 2px; background: var(--gold); margin: 0 auto; }

/* Hero de página interna */
.page-hero {
  position: relative;
  display: flex;
  min-height: 58vh;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 6rem;
}
@media (min-width: 768px) { .page-hero { padding-top: 10rem; } }
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.46);
}

/* Anchor offset para jump links */
.anchor-target { scroll-margin-top: 110px; }

/* Separador de seção */
.section-sep { width: 100%; height: 1px; background: rgba(13,27,42,0.07); }

/* ─── OVERVIEW CARDS (Serviços) ─── */
.overview-card {
  background: white;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: block;
  position: relative;
}
.overview-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.overview-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(13,27,42,0.12); border-color: rgba(241,97,54,0.25); }
.overview-card:hover::after { transform: scaleX(1); }
.overview-card img { transition: transform 0.5s ease; display: block; width: 100%; height: 100%; object-fit: cover; }
.overview-card:hover img { transform: scale(1.05); }

/* ─── SERVICE DETAIL (Serviços) ─── */
.service-detail-img {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-detail-img:hover img { transform: scale(1.03); }

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.service-item-dot {
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

/* ─── JUMP PILLS (Serviços) ─── */
.jump-pill {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(13,27,42,0.12);
  border-radius: 2rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
.jump-pill:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ─── INFO CARDS (Contato) ─── */
.info-card {
  background: white;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.info-card:hover { border-color: rgba(241,97,54,0.3); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(13,27,42,0.08); }
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(241,97,54,0.08);
  border: 1px solid rgba(241,97,54,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── FORMULÁRIO (Contato) ─── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border: 1px solid rgba(13,27,42,0.15);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: white;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(241,97,54,0.1); }
.form-input::placeholder { color: var(--text-light); }
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a8fa6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea.form-input { resize: vertical; min-height: 130px; }

/* ═══════════════════════════════════════════
   BLOG — LISTAGEM
═══════════════════════════════════════════ */

/* Post card */
.post-card { background: white; border: 1px solid rgba(13,27,42,0.08); border-radius: 1rem; overflow: hidden; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); text-decoration: none; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(13,27,42,0.12); border-color: rgba(241,97,54,0.25); }
.post-card img { transition: transform 0.5s ease; display: block; width: 100%; height: 100%; object-fit: cover; }
.post-card:hover img { transform: scale(1.05); }
.post-card-img { overflow: hidden; aspect-ratio: 16/9; }
.post-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

/* Category tag inline */
.cat-tag { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: inline-block; }

/* Featured post card */
.featured-card { background: white; border: 1px solid rgba(13,27,42,0.08); border-radius: 1.25rem; overflow: hidden; transition: all 0.4s ease; }
.featured-card:hover { box-shadow: 0 30px 60px rgba(13,27,42,0.12); border-color: rgba(241,97,54,0.25); }
.featured-card img { transition: transform 0.6s ease; display: block; width: 100%; height: 100%; object-fit: cover; }
.featured-card:hover img { transform: scale(1.03); }

/* Category pills (filter bar) */
.cat-pill { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); padding: 0.45rem 1.1rem; border: 1px solid rgba(13,27,42,0.12); border-radius: 2rem; transition: all 0.3s ease; cursor: pointer; text-decoration: none; white-space: nowrap; }
.cat-pill:hover, .cat-pill.active { background: var(--navy); color: white; border-color: var(--navy); }

/* Pagination */
.page-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(13,27,42,0.15); display: inline-flex; align-items: center; justify-content: center; font-size: 0.825rem; color: var(--text-mid); transition: all 0.3s ease; font-family: 'Poppins', sans-serif; font-weight: 500; text-decoration: none; }
.page-btn:hover, .page-btn.active, .page-btn[aria-current] { background: var(--navy); color: white; border-color: var(--navy); }
.aire-pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 3.5rem; }
.aire-pagination .page-numbers { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(13,27,42,0.15); display: inline-flex; align-items: center; justify-content: center; font-size: 0.825rem; color: var(--text-mid); transition: all 0.3s ease; font-family: 'Poppins', sans-serif; font-weight: 500; text-decoration: none; }
.aire-pagination .page-numbers:hover, .aire-pagination .page-numbers.current { background: var(--navy); color: white; border-color: var(--navy); }
.aire-pagination .page-numbers.dots { border: none; background: transparent; }
.aire-pagination .page-numbers.prev, .aire-pagination .page-numbers.next { width: auto; padding: 0 0.875rem; border-radius: 2rem; }

/* ═══════════════════════════════════════════
   BLOG — ARTIGO (single.php)
═══════════════════════════════════════════ */

/* Tipografia do artigo */
.article-body { font-size: 1.05rem; line-height: 1.9; color: var(--text-mid); }
.article-body h2 { font-size: 1.5rem; font-weight: 600; color: var(--navy); margin: 2.5rem 0 1rem; line-height: 1.3; font-family: 'Poppins', sans-serif; }
.article-body h3 { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: 2rem 0 0.75rem; font-family: 'Poppins', sans-serif; }
.article-body p { margin-bottom: 1.5rem; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body ul { padding-left: 0; list-style: none; margin-bottom: 1.5rem; }
.article-body ul li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.6rem; }
.article-body ul li::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; margin-top: 0.65rem; }
.article-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-body ol li { margin-bottom: 0.5rem; }
.article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: #D94E28; }
.article-body img { border-radius: 1rem; width: 100%; height: auto; display: block; margin: 2rem 0; }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 1.5rem 2rem; background: white; border-radius: 0 0.75rem 0.75rem 0; margin: 2rem 0; }
.article-body blockquote p { color: var(--navy); font-size: 1.1rem; font-style: italic; font-weight: 500; margin: 0; line-height: 1.7; }
.article-body blockquote cite { display: block; margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-light); font-style: normal; letter-spacing: 0.1em; text-transform: uppercase; }
.article-body figcaption { color: var(--text-light); font-size: 0.8rem; text-align: center; margin-top: -1.5rem; margin-bottom: 2rem; }

/* Página institucional: listas padrão (sem estilo de traço dourado) */
.article-body--plain-lists ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.5rem; }
.article-body--plain-lists ul li { display: list-item; margin-bottom: 0.5rem; }
.article-body--plain-lists ul li::before { content: none; }
.article-body--plain-lists ol { padding-left: 1.5rem; list-style: decimal; margin-bottom: 1.5rem; }
.article-body--plain-lists ol li { margin-bottom: 0.5rem; }

/* Botões de compartilhamento */
.share-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; border-radius: 2rem; border: 1px solid rgba(13,27,42,0.12); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); transition: all 0.3s ease; text-decoration: none; }
.share-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* Índice (TOC) */
.toc-link { display: block; font-size: 0.825rem; color: var(--text-mid); padding: 0.4rem 0; border-bottom: 1px solid rgba(13,27,42,0.06); transition: color 0.3s; text-decoration: none; }
.toc-link:hover { color: var(--gold); }
.toc-link:last-child { border-bottom: none; }
