/* ═══════════════════════════════════════════════════════════════
   FCB 2026 — CSS Principal
   Federação Columbófila Brasileira
   Design: Luxury/Refinado — Teal Escuro + Dourado
   ═══════════════════════════════════════════════════════════════ */

/* ── Variáveis ────────────────────────────────────────────────── */
:root {
  --teal-dark:    #1a5f5e;
  --teal-mid:     #2a8a87;
  --teal-light:   #3aada9;
  --teal-ghost:   #e8f7f6;
  --teal-pale:    #f0faf9;
  --gold:         #c8a84b;
  --gold-light:   #e8c96a;
  --gold-dark:    #a08030;
  --ink:          #0d2b2a;
  --ink-mid:      #1a3f3e;
  --paper:        #f9fdfc;
  --paper-warm:   #f5f3ee;
  --amber:        #d4850a;
  --amber-bg:     #fff8ec;
  --green:        #2a8a52;
  --green-bg:     #edfaf3;
  --body-bg:      #dce8e7;
  --text-dark:    #0d2b2a;
  --text-mid:     #2a4a49;
  --text-muted:   #5a7a79;
  --border:       rgba(26,95,94,0.15);
  --border-mid:   rgba(26,95,94,0.25);
  --shadow-sm:    0 2px 12px rgba(13,43,42,0.08);
  --shadow-md:    0 6px 30px rgba(13,43,42,0.12);
  --shadow-lg:    0 16px 60px rgba(13,43,42,0.16);
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --nav-h:        72px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Josefin Sans', 'Trebuchet MS', sans-serif;
  --font-serif:   'Source Serif 4', Georgia, serif;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}
body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-mid); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Tipografia ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p  { margin-bottom: 1.2rem; color: var(--text-mid); }

/* ── Container ────────────────────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--wide  { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.container--narrow{ max-width: 800px;  margin: 0 auto; padding: 0 20px; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--ink-mid) 100%);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(13,43,42,0.3);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 48px; width: auto; }
.site-logo__text { display: flex; flex-direction: column; }
.site-logo__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: .5px;
}
.site-logo__sub {
  font-size: .65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Menu principal */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.88);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.nav-menu > li > a .arrow {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
  margin-top: 2px;
}
.nav-menu > li:hover > a .arrow { transform: rotate(-135deg) translateY(-2px); }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s;
  z-index: 100;
}
.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--text-dark);
  font-size: .85rem;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.nav-menu .sub-menu li:last-child a { border-bottom: none; }
.nav-menu .sub-menu li a:hover {
  background: var(--teal-ghost);
  color: var(--teal-dark);
  padding-left: 24px;
}

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .5px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: block;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  overflow-y: auto;
  z-index: 999;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility .35s;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.88);
  font-size: .95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .sub-menu { padding-left: 16px; }
.mobile-menu .sub-menu a { font-size: .88rem; color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 60%, var(--teal-mid) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--body-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
  .hero__image { display: none; }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .hero__inner {
    padding: 36px 0;
  }
}
.hero__content {}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title span { color: var(--gold); }
.hero__text {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 32px;
  font-family: var(--font-serif);
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-height: 420px;
  object-fit: cover;
  border: 3px solid rgba(200,168,75,0.3);
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1;
}
.stat-item__label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   BOTÕES
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  transition: all .2s;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,168,75,0.35);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn--teal {
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
}
.btn--teal:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  color: #fff;
  transform: translateY(-2px);
}
.btn--sm { padding: 8px 18px; font-size: .82rem; }
.btn--lg { padding: 16px 40px; font-size: 1rem; }

/* ══════════════════════════════════════════════════════════════
   SEÇÕES GERAIS
   ══════════════════════════════════════════════════════════════ */
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }
.section--dark {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 100%);
  color: #fff;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.78); }
.section--teal { background: var(--teal-ghost); }
.section--paper { background: var(--paper); }
.section--warm  { background: var(--paper-warm); }

.section__header { text-align: center; margin-bottom: 56px; }
.section__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section--dark .section__eyebrow { color: var(--gold); }
.section__title { margin-bottom: 16px; }
.section__subtitle {
  font-family: var(--font-serif);
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.65); }
.section__divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal-mid));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Card post */
.post-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}
.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__thumb--placeholder {
  background: linear-gradient(135deg, var(--teal-ghost), var(--teal-pale));
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card__thumb--placeholder svg { opacity: .25; }
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__cat {
  display: inline-block;
  padding: 3px 10px;
  background: var(--teal-ghost);
  color: var(--teal-dark);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.post-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color .2s;
}
.post-card:hover .post-card__title { color: var(--teal-dark); }
.post-card__excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.post-card__date { display: flex; align-items: center; gap: 4px; }
.post-card__read-more {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-card__read-more:hover { color: var(--teal-mid); gap: 8px; }

/* Card institucional */
.inst-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.inst-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-dark), var(--gold));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.inst-card:hover::before { transform: scaleX(1); }
.inst-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.inst-card__icon {
  width: 52px; height: 52px;
  background: var(--teal-ghost);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.inst-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.inst-card__text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.inst-card__link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.inst-card__link:hover { color: var(--teal-mid); gap: 8px; }

/* ══════════════════════════════════════════════════════════════
   SINGLE POST
   ══════════════════════════════════════════════════════════════ */
.post-header {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.post-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--body-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.post-header__inner { position: relative; z-index: 1; }
.post-header__cat {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.post-header__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 800px;
  margin-bottom: 20px;
}
.post-header__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,0.65);
  font-size: .85rem;
  flex-wrap: wrap;
}
.post-header__meta span { display: flex; align-items: center; gap: 6px; }

/* Layout post */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding: 60px 0;
}
.post-content {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
}
.post-content p { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; }
.post-content h2, .post-content h3, .post-content h4 { margin: 36px 0 16px; color: var(--ink); }
.post-content h2 { font-size: 1.7rem; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.post-content img { border-radius: var(--radius-md); margin: 28px 0; box-shadow: var(--shadow-sm); }
.post-content ul, .post-content ol { margin: 16px 0 24px 24px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { font-family: var(--font-serif); color: var(--text-mid); margin-bottom: 8px; }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--amber-bg);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
}
.post-content blockquote p { font-style: italic; color: var(--text-dark); margin: 0; }
.post-content a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; }
.post-content strong { color: var(--ink); }
.post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.post-content table th, .post-content table td { padding: 10px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .9rem; }
.post-content table th { background: var(--teal-ghost); color: var(--teal-dark); font-weight: 700; }
.post-content table tr:last-child td { border-bottom: none; }

/* Thumbnail do post */
.post-featured-img {
  margin: -48px -48px 40px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16/6;
}
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Sidebar ── */
.sidebar {}
.sidebar .widget {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}
.sidebar .widget-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 16px;
}
.sidebar .widget ul li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.sidebar .widget ul li:last-child { border-bottom: none; }
.sidebar .widget ul li a { color: var(--text-mid); font-size: .9rem; }
.sidebar .widget ul li a:hover { color: var(--teal-dark); }

/* ── Tags ── */
.post-tags { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-tags__label { font-weight: 700; color: var(--ink); font-size: .88rem; margin-bottom: 10px; }
.post-tags__list { display: flex; flex-wrap: wrap; gap: 8px; }
.post-tags__item {
  padding: 4px 12px;
  background: var(--teal-ghost);
  color: var(--teal-dark);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  transition: all .2s;
}
.post-tags__item:hover { background: var(--teal-dark); color: #fff; }

/* ── Post nav ── */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.post-nav__item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all .2s;
}
.post-nav__item:hover { border-color: var(--teal-mid); background: var(--teal-ghost); }
.post-nav__item--next { text-align: right; }
.post-nav__direction { font-size: .75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.post-nav__title { font-family: var(--font-display); font-size: .95rem; color: var(--ink); font-weight: 700; line-height: 1.3; }

/* ══════════════════════════════════════════════════════════════
   ARCHIVE / BLOG
   ══════════════════════════════════════════════════════════════ */
.archive-header {
  background: linear-gradient(135deg, var(--teal-dark), var(--ink));
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}
.archive-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 50px;
  background: var(--body-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.archive-header h1 {
  color: #fff;
  font-size: 2.2rem;
  position: relative; z-index: 1;
}
.archive-header p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; }

.archive-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 48px 0;
}

/* Filtros de categoria */
.cat-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-filter {
  padding: 6px 16px;
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .2s;
}
.cat-filter:hover,
.cat-filter.active {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

/* ── Paginação ── */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-mid);
  transition: all .2s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}
.pagination .prev, .pagination .next { width: auto; padding: 0 16px; }

/* ══════════════════════════════════════════════════════════════
   PÁGINA INSTITUCIONAL
   ══════════════════════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--body-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 { color: #fff; position: relative; z-index: 1; }
.page-header p  { color: rgba(255,255,255,0.7); position: relative; z-index: 1; max-width: 600px; }

.page-content-wrap {
  padding: 64px 0;
}
.page-content {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 12px 0;
  margin-bottom: 8px;
}
.breadcrumb ul { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { font-size: .82rem; color: rgba(255,255,255,0.55); }
.breadcrumb li::after { content: '/'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: var(--gold); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   SEÇÃO RÁDIO FCB (destaque home)
   ══════════════════════════════════════════════════════════════ */
.radio-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #1a3d3c 100%);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.radio-banner__info { display: flex; align-items: center; gap: 16px; }
.radio-banner__icon {
  width: 52px; height: 52px;
  background: rgba(200,168,75,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  animation: pulse-radio 2s ease-in-out infinite;
}
@keyframes pulse-radio {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,168,75,0.3); }
  50%      { box-shadow: 0 0 0 12px rgba(200,168,75,0); }
}
.radio-banner__title { color: var(--gold); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 2px; }
.radio-banner__sub   { color: rgba(255,255,255,0.6); font-size: .85rem; }

/* ══════════════════════════════════════════════════════════════
   SEÇÃO PILARES INSTITUCIONAIS
   ══════════════════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-dark), var(--gold));
  transform: scaleX(0);
  transition: transform .3s;
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--teal-ghost);
  line-height: 1;
  margin-bottom: 12px;
}
.pillar-card__title { font-size: 1.1rem; margin-bottom: 10px; color: var(--ink); }
.pillar-card__text  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   SECTION SEJA SÓCIO (CTA)
   ══════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 60%, var(--teal-mid) 100%);
}
.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-section__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   RODAPÉ
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, var(--ink) 0%, #060f0e 100%);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand__logo { margin-bottom: 16px; }
.footer-brand__text {
  font-size: .9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-brand__badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer-badge {
  padding: 4px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: .72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: .5px;
}
.footer-col__title {
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: .88rem;
  transition: all .2s;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }

/* Social icons */
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: .9rem;
  transition: all .2s;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ══════════════════════════════════════════════════════════════
   FORMULÁRIO BUSCA
   ══════════════════════════════════════════════════════════════ */
.search-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.search-form input[type="search"] {
  flex: 1;
  padding: 10px 16px;
  border: none;
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--paper);
  color: var(--text-dark);
  outline: none;
}
.search-form button {
  padding: 10px 18px;
  background: var(--teal-dark);
  color: #fff;
  border: none;
  font-size: .9rem;
  font-weight: 600;
  transition: background .2s;
}
.search-form button:hover { background: var(--teal-mid); }

/* ══════════════════════════════════════════════════════════════
   UTILITÁRIOS
   ══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-teal   { color: var(--teal-dark); }
.text-muted  { color: var(--text-muted); }
.mt-auto     { margin-top: auto; }
.mb-0        { margin-bottom: 0; }
.gold-line   { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 12px 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Badge de categoria no post */
.badge-cat {
  display: inline-block;
  padding: 3px 10px;
  background: var(--teal-ghost);
  color: var(--teal-dark);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .archive-layout { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 420px; }
  .hero__inner { padding: 60px 0; }
  .section { padding: 56px 0; }
  .stats-bar__inner { gap: 32px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .post-content { padding: 24px; }
  .post-featured-img { margin: -24px -24px 28px; }
  .post-nav { grid-template-columns: 1fr; }
  .radio-banner { flex-direction: column; text-align: center; }
  .hero__actions { justify-content: center; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .container { padding: 0 16px; }
  .btn { padding: 10px 20px; }
  .btn--lg { padding: 12px 28px; font-size: .92rem; }
}

/* ── Acessibilidade ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ── WP Admin Bar ── */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ── WP Core overrides ── */
.wp-block-image { margin: 24px 0; }
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter{ text-align: center; }
.alignfull  { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); max-width: 100vw; }
.size-full, .size-large { max-width: 100%; height: auto; }

/* ══ RESPONSIVO CONSOLIDADO v1.5 ════════════════════════════════ */

@media (max-width: 960px) {
  .site-header .nav-menu { display: none !important; }
  .site-header .nav-toggle { display: flex !important; }
}

@media (max-width: 640px) {
  .stats-bar { padding: 20px 0; }
  .stats-bar__inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 8px !important;
    justify-items: center;
  }
  .stat-item:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .stat-item__number { font-size: 1.6rem !important; }
  .stat-item__label  { font-size: .65rem !important; }

  .hero__actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .hero__actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ══ PAYWALL — override global link colors ══════════════════════ */
.fcb-paywall__btn--primary,
.fcb-paywall__btn--primary:link,
.fcb-paywall__btn--primary:visited,
.fcb-paywall__btn--primary:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-decoration: none !important;
}
.fcb-paywall__btn--secondary,
.fcb-paywall__btn--secondary:link,
.fcb-paywall__btn--secondary:visited,
.fcb-paywall__btn--secondary:hover {
  color: #0d2b2a !important;
  -webkit-text-fill-color: #0d2b2a !important;
  text-decoration: none !important;
}
