/* ════════════════════════════════════════
   O MELHOR DE BAURU — Portal Style CSS
   Verde escuro · Branco · Cinza quente
   ════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2E7D32;
  --green-dark:  #1B5E20;
  --green-light: #43A047;
  --green-accent:#66BB6A;
  --cream:       #F8F7F4;
  --warm:        #F1EDE6;
  --stone:       #DDD8D0;
  --ink:         #111111;
  --ink-soft:    #333333;
  --muted:       #777777;
  --white:       #FFFFFF;
  --card-bg:     #FFFFFF;

  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --r: 6px;
  --r-lg: 12px;
  --t: 0.22s ease;
  --sh: 0 2px 12px rgba(0,0,0,0.08);
  --sh-hover: 0 8px 28px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--cream); color: var(--ink); overflow-x: hidden; line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* ── EYEBROW ─────────────────────────── */
.eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green); margin-bottom: 0.6rem;
}
.eyebrow--light { color: var(--green-accent); }

/* ── SECTION TITLE ───────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.12; color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 400; color: var(--green); }
.section-title--white { color: var(--white); }
.section-title--white em { color: var(--green-accent); }

/* ── BUTTONS ─────────────────────────── */
.btn-green {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.8rem 1.8rem;
  background: var(--green); color: var(--white);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: var(--r); cursor: pointer;
  box-shadow: 0 3px 10px rgba(46,125,50,0.35);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(46,125,50,0.45); }

.btn-outline-green {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  background: transparent; color: var(--green);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  border: 2px solid var(--green); border-radius: var(--r); cursor: pointer;
  transition: all var(--t);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

.btn-outline-white {
  display: inline-flex; align-items: center;
  padding: 0.8rem 1.8rem;
  background: transparent; color: var(--white);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.85); border-radius: var(--r); cursor: pointer;
  transition: all var(--t);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; transform: translateY(-2px); }

.btn-load {
  padding: 0.85rem 3rem;
  background: var(--white); color: var(--green);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid var(--green); border-radius: var(--r); cursor: pointer;
  transition: all var(--t);
}
.btn-load:hover { background: var(--green); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════
   NAV
   ════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 4%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
#navbar.scrolled { border-bottom-color: var(--stone); box-shadow: var(--sh); }

.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--green); }
.nav-logo-title { display: block; font-size: 0.95rem; font-weight: 800; color: var(--ink); line-height: 1.2; }
.nav-logo-sub { display: block; font-size: 0.62rem; color: var(--muted); letter-spacing: 0.08em; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft);
  transition: color var(--t); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green); transform: scaleX(0); transition: transform var(--t);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 0.5rem 1.25rem !important; background: var(--green) !important; color: var(--white) !important; border-radius: var(--r); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; top: 62px; left: 0; right: 0;
  background: var(--white); border-bottom: 3px solid var(--green);
  padding: 1.25rem 4%; flex-direction: column; gap: 1rem;
  z-index: 99; opacity: 0; pointer-events: none;
  box-shadow: var(--sh-hover); transition: opacity 0.2s;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: auto; }
.mobile-link { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); padding: 0.3rem 0; }

/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
.hero {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end;
  padding: 1.5rem 4% 0;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 75%; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(10,40,10,0.5) 40%,
    rgba(0,0,0,0.88) 100%
  );
}

.hero-inner {
  position: relative; width: 100%;
  padding-top: 0; padding-bottom: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
}

/* ════════════════════════════════════════
   HERO — layout 2 colunas (esquerda: brand, direita: carimbo+creds)
   ════════════════════════════════════════ */
.hero-content {
  display: flex; align-items: center; gap: 2.5rem;
  width: 100%;
  margin-bottom: 1.1rem;
}
.hero-content__main { flex: 1.3; min-width: 0; }
.hero-content__side {
  flex: 0 0 auto;
  display: flex; flex-direction: row;
  align-items: center; gap: 1.4rem;
  padding-bottom: 0.4rem;
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
}

/* Logo "carimbo" — ringue dourado + leve rotação */
.hero-stamp {
  position: relative;
  width: 165px; height: 165px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg,
    rgba(215,174,106,0.85) 0%,
    rgba(181,137,74,0.65) 50%,
    rgba(255,255,255,0.4) 100%);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4);
  transform: rotate(-5deg);
  flex-shrink: 0;
  animation: stampDrop 0.9s cubic-bezier(.2,.7,.3,1.2) 0.3s both;
}
.hero-stamp::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.45);
  pointer-events: none;
}
.hero-stamp img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}
@keyframes stampDrop {
  0%   { opacity: 0; transform: rotate(-15deg) scale(1.4); }
  60%  { opacity: 1; transform: rotate(-3deg) scale(0.96); }
  100% { opacity: 1; transform: rotate(-5deg) scale(1); }
}

/* Bloco da direita (ao lado do carimbo): badge + lista de creds */
.hero-creds-block {
  display: flex; flex-direction: column; gap: 0.7rem;
  max-width: 290px;
}

/* Badge compacto dentro do creds-block */
.hero-content__side .hero-badge {
  margin: 0;
  padding: 0.55rem 1.05rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.25;
  align-self: flex-start;
}

/* Lista de credenciais */
.hero-creds {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.hero-creds li {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1.3;
}
.hero-creds__check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(102,187,106,0.25);
  border: 1px solid rgba(102,187,106,0.55);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green-accent);
  font-size: 0.72rem; font-weight: 800;
}

.hero-brand {
  margin-bottom: 0;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
  max-width: 720px;
}
.hero-handle {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--green-accent); text-transform: uppercase; margin-bottom: 0.4rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  font-weight: 700; line-height: 1.02; color: var(--white);
  margin-bottom: 0.7rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45);
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-sub {
  display: block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.4rem;
  max-width: 540px;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hero-ctas {
  display: flex; gap: 0.7rem; flex-wrap: wrap;
}

/* ── IMPACT BAR — o elemento estrela ── */
.impact-bar {
  display: flex; align-items: stretch;
  background: var(--green);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}

.impact-item {
  flex: 1; min-width: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1rem 0.75rem;
  gap: 0.2rem;
  transition: background var(--t);
}
.impact-item:hover { background: var(--green-dark); }

.impact-num {
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 900; color: var(--white);
  line-height: 1; font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.impact-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.impact-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 1rem 0; align-self: stretch; }

/* Hero badge — pré-headline acima do título */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin: 0 0 1rem 0; padding: 0.5rem 1.1rem;
  background: linear-gradient(135deg, rgba(181,137,74,0.32), rgba(181,137,74,0.12));
  border: 1px solid rgba(215,174,106,0.55);
  border-radius: 999px; color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(181,137,74,0.22);
  align-self: flex-start;
  opacity: 0; animation: fadeUp 0.7s 0.7s forwards;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #D7AE6A;
  box-shadow: 0 0 0 4px rgba(215,174,106,0.28);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }

/* FAB Instagram DM (canto inferior direito, fixo) */
.fab-dm {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 60;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.15rem 0.85rem 0.95rem;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 45%, #8134AF 80%, #515BD4 100%);
  color: white !important; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  box-shadow: 0 8px 26px rgba(221,42,123,0.42);
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
}
.fab-dm:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 34px rgba(221,42,123,0.55); }
.fab-dm__label { white-space: nowrap; }
@media (max-width: 560px) {
  .fab-dm { right: 1rem; bottom: 1rem; padding: 0.85rem; }
  .fab-dm__label { display: none; }
}

/* Subtítulo do form (microcopy) */
.form-sub {
  font-size: 0.85rem; color: var(--muted);
  margin: -0.4rem 0 1.1rem;
}

/* ════════════════════════════════════
   RANKINGS — Tiles em grid (mesma largura da galeria)
   ════════════════════════════════════ */
.rankings-section {
  background: var(--cream);
  padding: 3rem 4% 3.5rem;
  border-top: 1px solid var(--stone);
}
.rankings-header { margin-bottom: 1.5rem; }
.rankings-header .eyebrow { margin-bottom: 0.4rem; }
.rankings-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.rankings-title em { font-style: italic; font-weight: 400; color: var(--green); }
.rankings-sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 700px;
}

.rankings-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.65rem;
}
.rank-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: white;
  border: 1.5px solid var(--stone);
  border-radius: var(--r-lg);
  color: var(--ink-soft);
  text-align: center;
  transition: all var(--t);
  min-height: 110px;
}
.rank-tile__icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.1rem;
}
.rank-tile__badge {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  background: var(--green);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  border-radius: 999px;
  margin-bottom: 0.25rem;
}
.rank-tile__cat {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  color: inherit;
}
.rank-tile__sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.1rem;
  letter-spacing: 0.02em;
}
.rank-tile--featured .rank-tile__badge {
  background: rgba(255,255,255,0.25);
  color: white;
}
.rank-tile--featured .rank-tile__sub { color: rgba(255,255,255,0.8); }
.rank-tile--map .rank-tile__badge {
  background: rgba(255,255,255,0.25);
  color: white;
}
.rank-tile--map .rank-tile__sub { color: rgba(255,255,255,0.8); }
.rank-tile:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--sh-hover);
}
.rank-tile--featured {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: transparent;
  color: white;
}
.rank-tile--featured:hover { color: white; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(46,125,50,0.4); }
.rank-tile--map {
  background: linear-gradient(135deg, #B5894A 0%, #8B6634 100%);
  border-color: transparent;
  color: white;
}
.rank-tile--map:hover { color: white; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(181,137,74,0.4); }

@media (max-width: 1100px) {
  .rankings-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .rankings-row { grid-template-columns: repeat(2, 1fr); }
  .rank-tile { min-height: 100px; padding: 1rem 0.5rem; }
  .rank-tile__icon { font-size: 1.7rem; }
}

/* Footer rankings/categories grid */
.footer-rankings {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 800px;
}
.footer-rankings__title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.55rem;
}
.footer-rankings__grid {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  justify-content: center;
}
.footer-rankings__grid a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--t);
}
.footer-rankings__grid a:hover { color: var(--green-accent); }

/* ════════════════════════════════════
   PUBLICAÇÕES — PORTAL LAYOUT
   ════════════════════════════════════ */
.section { padding: 5rem 4%; }
.pub-section { background: var(--white); padding-top: 2.5rem; }
.pub-load-more { display: flex; justify-content: center; margin-top: 2rem; }

/* ════════════════════════════════════════
   FILTROS DE CATEGORIA — pills acima da grade
   ════════════════════════════════════════ */
.vfilters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.vfilter {
  background: var(--white);
  border: 1.5px solid var(--stone);
  color: var(--ink-soft);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.vfilter:hover { border-color: var(--green); color: var(--green); }
.vfilter.active {
  background: var(--green); border-color: var(--green); color: white;
}

/* ════════════════════════════════════════
   GALERIA VERTICAL 9:16 (estilo perfil Insta)
   Fundo preto fica só entre os cards (4px de gap)
   ════════════════════════════════════════ */
.vgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 1.5rem;
  background: #0a0a0a;
}

.vcard {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  text-decoration: none; color: white;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1.2),
              box-shadow 0.35s, z-index 0s;
}
.vcard:hover {
  transform: scale(1.04);
  z-index: 5;
  box-shadow: 0 14px 36px rgba(0,0,0,0.6),
              0 0 0 2px var(--gold);
}
.vcard--featured { grid-column: span 2; grid-row: span 2; }

.vcard__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vcard:hover .vcard__img { transform: scale(1.06); }

.vcard__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 38%, rgba(0,0,0,0.05) 70%, transparent 100%);
  padding: 0.85rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.vcard--featured .vcard__overlay { padding: 1.1rem; }

.vcard__top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem;
}
.vcard__tags { display: inline-flex; gap: 0.35rem; align-items: center; flex-wrap: wrap; }
.vcard__badge, .vcard__cat, .vcard__views {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
}
.vcard__badge { background: rgba(255,255,255,0.16); }
.vcard__cat   { background: rgba(46,125,50,0.85); }
.vcard__views { background: rgba(0,0,0,0.65); border-color: rgba(255,255,255,0.22); }

.vcard--featured .vcard__badge,
.vcard--featured .vcard__cat,
.vcard--featured .vcard__views {
  font-size: 0.66rem; padding: 0.4rem 0.75rem;
}

.vcard__bottom { padding-top: 1rem; }
.vcard__title {
  font-size: 0.82rem; font-weight: 700; color: white; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 0.4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.vcard--featured .vcard__title { font-size: 1.15rem; -webkit-line-clamp: 3; }

.vcard__partners {
  font-size: 0.66rem; font-weight: 600;
  color: var(--green-accent);
  margin-bottom: 0.4rem;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.vcard--featured .vcard__partners { font-size: 0.78rem; }

.vcard__meta {
  display: flex; gap: 0.85rem;
  font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.vskeleton {
  aspect-ratio: 9 / 16;
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: 4px;
}
.vskeleton--featured { grid-column: span 2; grid-row: span 2; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 1100px) { .vgrid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 800px)  { .vgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  {
  .vgrid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .vcard--featured, .vskeleton--featured {
    grid-column: span 2; grid-row: span 1;
    aspect-ratio: 16 / 11;
  }
  .vcard__title { font-size: 0.74rem; }
  .vcard__badge, .vcard__cat, .vcard__views { font-size: 0.52rem; padding: 0.26rem 0.5rem; }
  .vfilter { font-size: 0.7rem; padding: 0.45rem 0.9rem; }
}

.pub-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}

/* ── DESTAQUE: 1 grande + 2 menores ── */
.pub-destaque {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4px;
  height: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 4px;
}

.pub-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: #141414;
}
.pub-card__media {
  position: absolute;
  inset: 0 0 30% 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 42%),
    linear-gradient(180deg, #181818 0%, #111111 100%);
}
.pub-card__media::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: var(--media-bg);
  background-size: cover;
  background-position: center;
  filter: blur(30px) saturate(1.12);
  opacity: 0.7;
  transform: scale(1.08);
}
.pub-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.14) 0%, rgba(15,15,15,0.42) 100%);
}
.pub-card img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 16px 42px rgba(0,0,0,0.35);
  transition: transform 0.5s ease;
}
.pub-card:hover img { transform: scale(1.04); }

.pub-card__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.92) 26%, rgba(0,0,0,0.35) 52%, rgba(0,0,0,0.14) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--t);
}
.pub-card:hover .pub-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 55%, transparent 100%); }

.pub-card__topline {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.pub-card__badge,
.pub-card__views {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.pub-card__badge {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.16);
}

.pub-card__views {
  margin-left: auto;
  background: rgba(46,125,50,0.85);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
}

.pub-card__tags { display: inline-flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; }
.pub-card__cat {
  display: inline-flex; align-items: center;
  padding: 0.32rem 0.65rem;
  background: rgba(46,125,50,0.85); color: white;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(5px);
}

.pub-card__title {
  font-size: 1.15rem; font-weight: 800; color: white; line-height: 1.3;
  margin-top: auto;
  margin-bottom: 0.55rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  position: relative;
  z-index: 2;
}

.pub-card--large .pub-card__title { font-size: 1.55rem; }

.pub-card__partners {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.pub-card__meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.pub-meta-item {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.82); font-weight: 600;
}

/* destaque-col: coluna da direita com 2 posts */
.pub-destaque-col { display: flex; flex-direction: column; gap: 4px; }
.pub-destaque-col .pub-card { flex: 1; }
.pub-destaque-col .pub-card__title { font-size: 1rem; }

/* ── GRADE: posts menores estilo portal ── */
.pub-grade {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.pub-grade .pub-card { aspect-ratio: 4/5; }
.pub-grade .pub-card__title { font-size: 0.85rem; -webkit-line-clamp: 2; }
.pub-grade .pub-card__partners { font-size: 0.66rem; margin-bottom: 0.55rem; -webkit-line-clamp: 1; }
.pub-grade .pub-card__overlay { padding: 1rem; }
.pub-grade .pub-card__media { inset: 0 0 34% 0; }
.pub-grade .pub-card__topline { top: 0.75rem; left: 0.75rem; right: 0.75rem; }
.pub-grade .pub-card__badge,
.pub-grade .pub-card__views { font-size: 0.58rem; padding: 0.28rem 0.55rem; }

/* skeletons */
.pub-skeleton {
  background: linear-gradient(90deg, var(--warm) 25%, var(--stone) 50%, var(--warm) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
  border-radius: var(--r);
}
.pub-skeleton--large { height: 520px; }
.pub-skeleton--sm { aspect-ratio: 4/5; }
.pub-skeleton-col { display: flex; flex-direction: column; gap: 4px; }
.pub-skeleton-col .pub-skeleton { flex: 1; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.pub-load-more { text-align: center; padding-top: 1rem; }

/* ════════════════════════════════════
   SOBRE
   ════════════════════════════════════ */
.sobre-section { background: var(--cream); }

.sobre-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: start; }

.sobre-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.sobre-person { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.sobre-person img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-lg); border: 3px solid white; box-shadow: var(--sh); transition: transform var(--t); }
.sobre-person img:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.sobre-name { font-size: 0.9rem; font-weight: 800; color: var(--green); letter-spacing: 0.05em; }

.sobre-casal img { width: 100%; border-radius: var(--r-lg); border: 3px solid white; box-shadow: var(--sh); }
.sobre-casal-leg { text-align: center; font-size: 0.75rem; color: var(--muted); font-style: italic; margin-top: 0.5rem; }

.sobre-text { font-size: 0.95rem; color: var(--ink-soft); font-weight: 300; line-height: 1.75; margin: 1.25rem 0; }
.sobre-text strong { font-weight: 700; color: var(--ink); }

.sobre-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.25rem 0; }
.sobre-card { background: white; padding: 1.15rem; border-radius: var(--r-lg); border-left: 3px solid var(--green); box-shadow: var(--sh); }
.sobre-card strong { font-size: 0.85rem; font-weight: 800; color: var(--green); display: block; margin-bottom: 0.4rem; }
.sobre-card p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.55; font-weight: 300; }

.missao-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.25rem 0; padding: 1.25rem; background: white; border-radius: var(--r-lg); box-shadow: var(--sh); }
.missao-row { display: flex; gap: 0.85rem; align-items: flex-start; }
.missao-row span { font-size: 1rem; flex-shrink: 0; }
.missao-row strong { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.15rem; }
.missao-row p { font-size: 0.8rem; color: var(--ink-soft); font-weight: 300; }

.sobre-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0 1.75rem; }
.sobre-tags span { padding: 0.35rem 0.9rem; background: white; border: 1.5px solid var(--stone); border-radius: 99px; font-size: 0.75rem; font-weight: 600; color: var(--ink-soft); transition: border-color var(--t), color var(--t); cursor: default; }
.sobre-tags span:hover { border-color: var(--green); color: var(--green); }

/* ════════════════════════════════════
   MEDIA KIT
   ════════════════════════════════════ */
.mk-section { background: var(--ink); }

.mk-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap; }
.mk-sub { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; font-style: italic; }
.mk-logo { width: 70px; height: 70px; border-radius: 50%; border: 3px solid var(--green); box-shadow: 0 4px 16px rgba(46,125,50,0.5); }

/* Subtítulos dos blocos no Media Kit */
.mk-block-title {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-accent);
  margin: 1.25rem 0 0.75rem;
}
.mk-block-title:first-of-type { margin-top: 0; }

.mk-numbers {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2px; background: rgba(255,255,255,0.06);
  border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 1.5rem;
}
.mk-numbers--quad { grid-template-columns: repeat(4, 1fr); }
.mk-numbers--trio { grid-template-columns: repeat(3, 1fr); }

.mk-num { background: rgba(255,255,255,0.04); padding: 2rem 2.25rem; transition: background var(--t); }
.mk-num:hover { background: rgba(255,255,255,0.08); }
.mk-num--hero { padding: 2.5rem; background: rgba(46,125,50,0.2); display: flex; flex-direction: column; justify-content: flex-end; }
.mk-nlabel { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 0.4rem; }
.mk-nval { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: white; line-height: 1.1; }
.mk-nval--small { font-size: 1.6rem; }
.mk-num--hero .mk-nval { font-size: 4rem; color: var(--green-accent); }
.mk-nupdate { font-size: 0.7rem; color: rgba(255,255,255,0.22); margin-top: 0.75rem; font-style: italic; }

.mk-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ════════════════════════════════════
   CONTATO
   ════════════════════════════════════ */
.contato-section { background: var(--warm); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contato-text { font-size: 0.93rem; color: var(--ink-soft); font-weight: 300; line-height: 1.75; margin: 1.25rem 0 1.75rem; }

.contato-tipos { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.tipo-item { font-size: 0.88rem; color: var(--ink-soft); padding: 0.65rem 1rem; background: white; border-radius: var(--r); border-left: 3px solid var(--green); font-weight: 500; }
.contato-email { font-size: 0.9rem; font-weight: 600; color: var(--green); }

.contato-form { background: white; padding: 2.25rem; border-radius: var(--r-lg); box-shadow: var(--sh); border-top: 4px solid var(--green); }
.form-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--ink); }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 0.9rem; background: var(--cream); border: 1.5px solid var(--stone); border-radius: var(--r); font-family: var(--font); font-size: 0.9rem; color: var(--ink); outline: none; transition: border-color var(--t); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-feedback { font-size: 0.8rem; text-align: center; margin-top: 0.75rem; min-height: 1.2rem; color: var(--green); }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.footer { background: #0A0A0A; padding: 3.5rem 4% 2rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
.footer-logo { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--green); box-shadow: 0 3px 12px rgba(46,125,50,0.4); }
.footer-name { font-size: 1.15rem; font-weight: 800; color: white; }
.footer-handle { font-size: 0.72rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.footer-links { display: flex; gap: 2rem; margin: 0.5rem 0; }
.footer-links a { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; transition: color var(--t); }
.footer-links a:hover { color: var(--green-accent); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.18); }

/* ════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 1100px) {
  .pub-grade { grid-template-columns: repeat(4, 1fr); }
  .pub-grade .pub-card:nth-child(5) { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 320px; }

  .impact-bar { flex-wrap: wrap; border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .impact-item { flex: calc(50% - 1px); min-width: 0; padding: 0.75rem 0.5rem; }
  .impact-divider { display: none; }
  .impact-item:nth-child(odd):not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); }

  .pub-destaque { grid-template-columns: 1fr; height: auto; }
  .pub-destaque .pub-card--large { height: 380px; }
  .pub-destaque-col { flex-direction: row; }
  .pub-destaque-col .pub-card { height: 220px; }

  .pub-grade { grid-template-columns: repeat(2, 1fr); }
  .pub-grade .pub-card:nth-child(n+3) { display: none; }
  .pub-destaque .pub-card__media { inset: 0 0 36% 0; }

  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mk-numbers,
  .mk-numbers--quad,
  .mk-numbers--trio { grid-template-columns: 1fr 1fr; }
  .mk-num--hero { grid-column: span 2; }
}

@media (max-width: 560px) {
  .section { padding: 4rem 4%; }
  .pub-destaque { height: auto; }
  .pub-destaque .pub-card--large { height: 300px; }
  .pub-destaque-col { flex-direction: column; }
  .pub-destaque-col .pub-card { height: 200px; }
  .pub-destaque .pub-card__media,
  .pub-grade .pub-card__media { inset: 0 0 40% 0; }
  .pub-grade { grid-template-columns: repeat(2, 1fr); }
  .pub-grade .pub-card:nth-child(n+3) { display: block; }
  .sobre-cards { grid-template-columns: 1fr; }

  /* Hero mobile — layout em coluna, altura natural */
  .hero {
    min-height: 100svh;
    padding-top: 68px; /* espaço da nav fixa */
    padding-bottom: 0;
    align-items: flex-end;
  }
  .hero-inner { gap: 0; }
  .hero-content {
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
    margin-bottom: 1rem;
  }
  /* Coluna principal: título + sub + CTAs */
  .hero-content__main { order: 1; }
  .hero-title { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  .hero-sub { font-size: 0.88rem; margin-bottom: 1.1rem; }
  .hero-ctas {
    flex-direction: column; gap: 0.6rem;
  }
  .hero-ctas .btn-green, .hero-ctas .btn-outline-white {
    width: 100%; justify-content: center;
  }
  /* Coluna lateral: carimbo pequeno + creds em linha */
  .hero-content__side {
    order: 0; /* aparece antes do título (carimbo compacto no topo do bloco) */
    flex-direction: row;
    align-items: center;
    align-self: flex-start;
    gap: 0.9rem;
    padding-bottom: 0;
    opacity: 1;
    animation: none;
  }
  .hero-stamp {
    width: 72px; height: 72px;
    flex-shrink: 0;
    transform: rotate(-5deg);
    animation: none;
  }
  .hero-creds-block { max-width: none; flex: 1; gap: 0.4rem; }
  .hero-content__side .hero-badge { display: none; } /* economiza espaço */
  .hero-creds li { font-size: 0.74rem; gap: 0.45rem; }
  .hero-creds__check { width: 16px; height: 16px; font-size: 0.62rem; }

  /* Impact bar */
  .impact-item { flex: calc(50% - 1px); }
  .pub-card__topline { top: 0.7rem; left: 0.7rem; right: 0.7rem; }
  .pub-card__badge,
  .pub-card__views { font-size: 0.56rem; padding: 0.26rem 0.52rem; }
}
