/* Santa Inês Mil Grau — estilos compartilhados (tokens + site público) */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton.woff2') format('woff2');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/rubik.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/karla.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/karla-italic.woff2') format('woff2');
}

:root {
  --papel: #FFF3EE;
  --papel-alto: #FFFFFF;
  --tinta: #241512;
  --tinta-fraca: #6E5750;
  --linha: rgba(36, 21, 18, 0.12);
  --grau: #EC174F;
  --grau-forte: #B80F3B;
  --grau-fraco: rgba(236, 23, 79, 0.10);
  --sol: #FFB627;
  --sol-forte: #D68E00;
  --sol-fraco: rgba(255, 182, 39, 0.16);
  --mato: #1F7A54;
  --mato-fraco: rgba(31, 122, 84, 0.14);
  --sombra: rgba(36, 21, 18, 0.16);
  /* Faixa do rodapé: sempre escura, não inverte com o tema (claro/escuro) */
  --rodape-bg: #241512;
  --rodape-texto: #FFF3EE;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --papel: #1B1210;
    --papel-alto: #241713;
    --tinta: #FBEDE7;
    --tinta-fraca: #C9AFA6;
    --linha: rgba(251, 237, 231, 0.14);
    --grau: #FF4D78;
    --grau-forte: #FF6E90;
    --grau-fraco: rgba(255, 77, 120, 0.16);
    --sol: #FFC24D;
    --sol-forte: #FFD37A;
    --sol-fraco: rgba(255, 194, 77, 0.14);
    --mato: #3FA980;
    --mato-fraco: rgba(63, 169, 128, 0.18);
    --sombra: rgba(0, 0, 0, 0.45);
  }
}
:root[data-theme="dark"] {
  --papel: #1B1210;
  --papel-alto: #241713;
  --tinta: #FBEDE7;
  --tinta-fraca: #C9AFA6;
  --linha: rgba(251, 237, 231, 0.14);
  --grau: #FF4D78;
  --grau-forte: #FF6E90;
  --grau-fraco: rgba(255, 77, 120, 0.16);
  --sol: #FFC24D;
  --sol-forte: #FFD37A;
  --sol-fraco: rgba(255, 194, 77, 0.14);
  --mato: #3FA980;
  --mato-fraco: rgba(63, 169, 128, 0.18);
  --sombra: rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: var(--rodape-bg); }
body {
  margin: 0;
  background: var(--papel);
  color: var(--tinta);
  font-family: 'Karla', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; text-wrap: balance; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--papel) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linha);
}
.topbar-inner {
  max-width: 1180px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-badge {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 2px var(--papel-alto), 0 0 0 3px var(--tinta);
}
.brand-word { font-family: 'Rubik'; font-weight: 800; font-size: 15px; line-height: 0.92; }
.brand-word span { display: block; color: var(--grau); }

.primary-nav { display: flex; align-items: center; gap: 22px; flex: 1; }

.guide-link, .cat-dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Rubik'; font-weight: 600; font-size: 13px; letter-spacing: 0.02em;
  white-space: nowrap; color: var(--tinta-fraca); padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.guide-link:hover, .guide-link:focus-visible,
.cat-dropdown-toggle:hover, .cat-dropdown-toggle:focus-visible,
.cat-dropdown-toggle[aria-expanded="true"] { color: var(--tinta); border-color: var(--sol); }

.cat-dropdown { position: relative; }
.cat-dropdown-toggle .chevron { transition: transform .15s ease; }
.cat-dropdown-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.cat-dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: 0; z-index: 50; min-width: 210px;
  background: var(--papel-alto); border: 1px solid var(--linha); border-radius: 14px;
  padding: 8px; box-shadow: 0 16px 32px -18px var(--sombra);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.cat-dropdown-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.cat-dropdown-panel a {
  font-family: 'Rubik'; font-weight: 600; font-size: 13.5px; color: var(--tinta);
  padding: 10px 12px; border-radius: 8px; white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.cat-dropdown-panel a:hover { background: var(--grau-fraco); color: var(--grau-forte); }

.topbar-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.search-icon-link {
  display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; color: var(--tinta-fraca); border: 1.5px solid var(--linha);
  transition: color .15s ease, border-color .15s ease;
}
.search-icon-link:hover { color: var(--grau); border-color: var(--grau); }
.ig-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--tinta); color: var(--papel);
  font-family: 'Rubik'; font-weight: 600; font-size: 12.5px;
  padding: 8px 14px; border-radius: 999px; white-space: nowrap;
  transition: transform .15s ease, background .15s ease;
}
.ig-pill:hover { background: var(--grau); transform: translateY(-1px); }

.menu-toggle { display: none; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.is-open .icon-open { display: none; }
.menu-toggle.is-open .icon-close { display: block; }

.mobile-nav {
  max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
  transition: max-height .28s ease, opacity .2s ease, visibility .28s;
}
.mobile-nav.is-open { max-height: 640px; opacity: 1; visibility: visible; border-top: 1px solid var(--linha); }
.mobile-nav-inner { padding: 8px 24px 18px; display: flex; flex-direction: column; }
.mobile-nav-inner a {
  font-family: 'Rubik'; font-weight: 600; font-size: 15.5px; color: var(--tinta);
  padding: 13px 2px; border-bottom: 1px solid var(--linha);
}
.mobile-nav-inner a:last-child { border-bottom: none; }

.mobile-cat-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: 'Rubik'; font-weight: 600; font-size: 15.5px; color: var(--tinta);
  padding: 13px 2px; border: none; border-bottom: 1px solid var(--linha); background: none;
}
.mobile-cat-toggle .chevron { color: var(--tinta-fraca); transition: transform .2s ease; }
.mobile-cat-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.mobile-cat-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.mobile-cat-panel.is-open { max-height: 400px; }
.mobile-cat-panel a {
  font-family: 'Rubik'; font-weight: 500; font-size: 14.5px; color: var(--tinta-fraca);
  padding: 12px 2px 12px 14px; display: block; border-bottom: 1px solid var(--linha);
}
.mobile-cat-panel a:last-child { border-bottom: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 46px; isolation: isolate; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(58% 65% at 82% 8%, var(--sol-fraco), transparent 60%),
    radial-gradient(65% 70% at 8% 92%, var(--grau-fraco), transparent 60%);
}
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Rubik'; font-weight: 700; font-size: 12.5px; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--grau-forte);
  background: var(--grau-fraco); border: 1px solid var(--grau-fraco);
  padding: 7px 14px 7px 12px; border-radius: 999px; margin: 0 0 22px;
}
.hero h1 {
  font-family: 'Anton'; font-weight: 400; text-transform: uppercase;
  font-size: clamp(38px, 7vw, 92px); line-height: 0.98; letter-spacing: 0.005em;
  max-width: 16ch;
}
.hero h1 .accent { color: var(--grau); }
.hero-sub { font-size: 18px; line-height: 1.6; color: var(--tinta-fraca); max-width: 46ch; margin: 26px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 34px; }
.btn-primary, .btn-ghost {
  font-family: 'Rubik'; font-weight: 700; font-size: 14.5px;
  padding: 15px 26px; border-radius: 12px; display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--grau); color: #fff; box-shadow: 5px 5px 0 var(--tinta); }
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--tinta); }
.btn-ghost { border: 2px solid var(--tinta); color: var(--tinta); }
.btn-ghost:hover { background: var(--tinta); color: var(--papel); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 10px 22px; font-family: 'Rubik'; font-weight: 600; font-size: 13px; color: var(--tinta-fraca); }
.hero-stats b { color: var(--tinta); font-variant-numeric: tabular-nums; }

/* faixa de destaque dinâmica */
.hero-destaque {
  display: inline-flex; align-items: center; gap: 10px; max-width: 100%;
  background: var(--papel-alto); border: 1px solid var(--linha); border-radius: 999px;
  padding: 8px 18px 8px 8px; margin-bottom: 30px; font-family: 'Rubik'; font-size: 13px; font-weight: 600;
}
.hero-destaque .tag {
  background: var(--grau); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  padding: 5px 10px; border-radius: 999px; flex: 0 0 auto;
}
.hero-destaque a { color: var(--tinta); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-destaque a:hover { color: var(--grau-forte); }

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--linha); border-bottom: 1px solid var(--linha);
  background: var(--tinta); overflow: hidden;
}
.ticker-track { display: flex; gap: 0; width: max-content; animation: rolar 32s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes rolar { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Rubik'; font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--papel);
  padding: 13px 26px; white-space: nowrap; border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background .15s ease, color .15s ease;
}
.ticker-item:hover { background: rgba(255, 243, 238, 0.1); color: var(--sol); }
.ticker-item i { color: var(--sol); font-style: normal; }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- grid de posts ---------- */
.content { max-width: 1180px; margin: 0 auto; padding: 52px 24px 20px; display: grid; grid-template-columns: 1fr 320px; gap: 56px; }
.content--full { grid-template-columns: 1fr; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.section-head h2 { font-family: 'Anton'; font-weight: 400; text-transform: uppercase; font-size: clamp(26px, 3.6vw, 34px); }
.section-head p { font-family: 'Rubik'; font-weight: 500; font-size: 13.5px; color: var(--tinta-fraca); }

.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 22px; }
.card {
  position: relative; background: var(--papel-alto); border: 1px solid var(--linha);
  border-radius: 16px; overflow: hidden; box-shadow: 0 1px 0 var(--linha);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 26px -14px var(--sombra); }
.card--feature { grid-column: span 2; display: flex; align-items: stretch; }
.card--feature .cover { min-height: 260px; flex: 1 1 52%; aspect-ratio: auto; }
.cover {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: var(--tinta);
}
.cover img { width: 100%; height: 100%; object-fit: cover; }
.cover.-placeholder { background: var(--grau); }
.cover.-placeholder.-grau { background: var(--grau); }
.cover.-placeholder.-sol { background: var(--sol-forte); }
.cover.-placeholder.-mato { background: var(--mato); }
.cover.-placeholder.-tinta { background: var(--tinta); }
.cover.-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.4px, transparent 1.4px);
  background-size: 13px 13px; mix-blend-mode: overlay; opacity: 0.55;
}
.cover.-placeholder .emoji { font-size: 64px; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25)); position: relative; z-index: 1; }
.card--feature .cover.-placeholder .emoji { font-size: 96px; }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.card--feature .card-body { padding: 26px 28px; justify-content: center; gap: 14px; flex: 1 1 48%; min-width: 0; }
.chip {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Rubik'; font-weight: 700; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 10px 5px 8px; border-radius: 999px; background: var(--grau-fraco); color: var(--grau-forte);
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.card h3 { font-family: 'Rubik'; font-weight: 700; font-size: 18px; line-height: 1.28; }
.card--feature h3 { font-size: 27px; line-height: 1.2; }
.card h3 a:hover { color: var(--grau-forte); }
.card p.excerpt {
  font-size: 14.5px; line-height: 1.62; color: var(--tinta-fraca);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.meta { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 12px; font-family: 'Rubik'; font-weight: 600; font-size: 12px; color: var(--tinta-fraca); }
.meta .avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--tinta); color: var(--papel); display: flex; align-items: center; justify-content: center; font-size: 9.5px; font-weight: 800; flex: 0 0 auto; }
.meta .stats { margin-left: auto; display: flex; gap: 10px; font-variant-numeric: tabular-nums; }

/* ---------- newsletter ---------- */
.newsletter-strip {
  margin-top: 44px; border-radius: 18px; padding: 36px 34px;
  background: var(--tinta); color: var(--papel);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.newsletter-strip::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border-radius: 50%;
  background: var(--grau); opacity: 0.35; filter: blur(10px);
}
.newsletter-strip .txt { position: relative; max-width: 38ch; }
.newsletter-strip h3 { font-family: 'Anton'; font-weight: 400; text-transform: uppercase; font-size: 24px; letter-spacing: 0.01em; margin-bottom: 8px; }
.newsletter-strip p { font-size: 14px; color: rgba(255, 243, 238, 0.72); line-height: 1.55; }
.signup { position: relative; display: flex; gap: 10px; flex-wrap: wrap; }
.signup input {
  font: inherit; font-family: 'Rubik'; font-size: 13.5px; background: rgba(255, 243, 238, 0.08);
  border: 1.5px solid rgba(255, 243, 238, 0.25); color: var(--papel); border-radius: 10px;
  padding: 13px 16px; min-width: 220px;
}
.signup input::placeholder { color: rgba(255, 243, 238, 0.5); }
.signup button {
  font-family: 'Rubik'; font-weight: 700; font-size: 13.5px; background: var(--sol); color: var(--tinta);
  padding: 13px 20px; border-radius: 10px; white-space: nowrap; transition: transform .15s ease;
}
.signup button:hover { transform: translateY(-2px); }

/* ---------- sidebar ---------- */
.side-col { display: flex; flex-direction: column; gap: 34px; }
.side-block h3 { font-family: 'Rubik'; font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--tinta); }
.ranked ol { display: flex; flex-direction: column; gap: 16px; }
.ranked li { display: flex; gap: 14px; align-items: flex-start; }
.ranked .num { font-family: 'Anton'; font-size: 26px; width: 30px; flex: 0 0 auto; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--tinta-fraca); }
.ranked li:nth-child(-n+3) .num { -webkit-text-stroke: 1.5px var(--grau); }
.ranked .rtxt a { font-family: 'Rubik'; font-weight: 600; font-size: 14px; line-height: 1.35; display: block; margin-bottom: 4px; }
.ranked .rtxt a:hover { color: var(--grau); }
.ranked .rtxt span { font-size: 12px; color: var(--tinta-fraca); font-variant-numeric: tabular-nums; }
.cat-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.cat-pills a { font-family: 'Rubik'; font-weight: 600; font-size: 12.5px; border: 1.5px solid var(--linha); padding: 8px 13px; border-radius: 999px; }
.cat-pills a:hover { border-color: var(--grau); background: var(--grau-fraco); color: var(--grau-forte); }

/* ---------- guia da cidade ---------- */
.guide-filters { margin-bottom: 30px; }
.guide-filters a.is-active { background: var(--grau); border-color: var(--grau); color: #fff; }
.guide-category-heading {
  font-family: 'Anton'; font-weight: 400; text-transform: uppercase; font-size: 20px;
  letter-spacing: 0.01em; margin: 34px 0 16px;
}
.guide-category-heading:first-of-type { margin-top: 0; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guide-card {
  background: var(--papel-alto); border: 1px solid var(--linha); border-radius: 16px; padding: 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -16px var(--sombra); }
.guide-photo { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; }
.guide-photo-empty { display: flex; align-items: center; justify-content: center; background: var(--linha); font-size: 28px; }
.guide-card h4 { font-family: 'Rubik'; font-weight: 700; font-size: 15px; }
.guide-specialty { font-size: 12.5px; color: var(--tinta-fraca); line-height: 1.4; }
.guide-neighborhood { font-size: 12px; color: var(--tinta-fraca); margin-bottom: 6px; }
.guide-card .btn-whatsapp { width: 100%; margin-top: 10px; }
.guide-empty { font-family: 'Rubik'; color: var(--tinta-fraca); }

/* ---------- busca ---------- */
.search-form { display: flex; gap: 10px; margin-bottom: 30px; }
.search-form input {
  flex: 1; font: inherit; font-family: 'Karla'; font-size: 15px; color: var(--tinta);
  background: var(--papel-alto); border: 1.5px solid var(--linha); border-radius: 10px; padding: 13px 16px;
}
.search-form input:focus { outline: none; border-color: var(--grau); }
.search-form button {
  font-family: 'Rubik'; font-weight: 700; font-size: 14px; background: var(--grau); color: #fff;
  padding: 13px 24px; border-radius: 10px; transition: transform .15s ease;
}
.search-form button:hover { transform: translateY(-2px); }
@media (max-width: 720px) {
  .guide-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .guide-grid { grid-template-columns: 1fr; }
}

/* ---------- classificados (estilo jornal) ---------- */
.classifieds-section { margin-bottom: 38px; }
.classifieds-section-title { display: flex; align-items: center; gap: 16px; margin: 0 0 20px; }
.classifieds-section-title .line { flex: 1; height: 3px; background: var(--tinta); }
.classifieds-section-title .label {
  font-family: 'Anton'; font-weight: 400; text-transform: uppercase; font-size: 19px;
  letter-spacing: 0.05em; white-space: nowrap;
}
.classifieds-columns { columns: 2; column-gap: 36px; }
.classified-ad {
  break-inside: avoid; display: flex; gap: 12px;
  padding: 16px 0; border-bottom: 1px dashed var(--linha);
}
.classified-photo { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex: 0 0 auto; }
.classified-body h4 { font-family: 'Rubik'; font-weight: 700; font-size: 14.5px; line-height: 1.35; margin-bottom: 5px; }
.classified-price { color: var(--grau-forte); font-weight: 700; white-space: nowrap; }
.classified-body p { font-family: 'Karla'; font-size: 13px; color: var(--tinta-fraca); line-height: 1.55; margin-bottom: 9px; }
.classified-meta { display: flex; gap: 14px; align-items: center; font-family: 'Rubik'; font-weight: 600; font-size: 12px; color: var(--tinta-fraca); flex-wrap: wrap; }
.classified-meta a { color: var(--mato); }
.classified-meta a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .classifieds-columns { columns: 1; }
}

.contact { background: var(--papel-alto); border: 1.5px dashed var(--linha); border-radius: 16px; padding: 22px; }
.contact h3 { border-bottom: none; padding-bottom: 0; margin-bottom: 10px; }
.contact p { font-size: 13.5px; color: var(--tinta-fraca); line-height: 1.55; margin-bottom: 16px; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--mato); color: #fff; font-family: 'Rubik'; font-weight: 700; font-size: 13.5px;
  padding: 13px; border-radius: 10px; transition: transform .15s ease;
}
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-guide {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grau); color: #fff; font-family: 'Rubik'; font-weight: 700; font-size: 13.5px;
  padding: 13px; border-radius: 10px; transition: transform .15s ease;
}
.btn-guide:hover { transform: translateY(-2px); }

/* ---------- footer ---------- */
.footer { margin-top: 70px; background: var(--rodape-bg); color: var(--rodape-texto); }
.footer-top { max-width: 1180px; margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 50%; }
.footer-brand span { font-family: 'Rubik'; font-weight: 800; font-size: 16px; }
.footer-tag { font-size: 13.5px; color: rgba(255, 243, 238, 0.62); line-height: 1.6; max-width: 32ch; }
.footer h4 { font-family: 'Rubik'; font-weight: 700; font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--sol); margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 13.5px; color: rgba(255, 243, 238, 0.78); }
.footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 243, 238, 0.14); padding: 20px 24px; max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255, 243, 238, 0.5); font-family: 'Rubik'; }

/* ---------- post single ---------- */
.post-header { max-width: 760px; margin: 0 auto; padding: 48px 24px 0; }
.post-header h1 { font-family: 'Rubik'; font-weight: 800; font-size: clamp(28px, 4vw, 42px); line-height: 1.2; margin: 14px 0; }
.post-updated { font-family: 'Rubik'; font-size: 11.5px; color: var(--tinta-fraca); margin-top: 6px; }
.post-cover { max-width: 900px; margin: 32px auto; padding: 0 24px; }
.post-cover img { border-radius: 18px; width: 100%; }
.post-body { max-width: 760px; margin: 0 auto; padding: 0 24px 60px; font-size: 17px; line-height: 1.75; }
.post-body p { margin: 0 0 20px; }
.section-richtext { margin-bottom: 8px; }
.section-foto { margin: 32px 0; }
.section-foto img { border-radius: 14px; width: 100%; }
.section-foto figcaption { font-size: 13px; color: var(--tinta-fraca); margin-top: 8px; font-family: 'Rubik'; }
.section-video { margin: 32px 0; }
.section-video .embed { position: relative; padding-top: 56.25%; border-radius: 14px; overflow: hidden; background: var(--tinta); }
.section-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.section-curiosidade { margin: 32px 0; background: var(--sol-fraco); border: 1.5px dashed var(--sol-forte); border-radius: 14px; padding: 20px 22px; }
.section-curiosidade .label { font-family: 'Rubik'; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sol-forte); margin-bottom: 8px; display: block; }
.section-curiosidade .source { font-family: 'Rubik'; font-size: 12.5px; color: var(--tinta-fraca); margin-top: 10px; margin-bottom: 0; }

/* ---------- quiz ---------- */
.section-quiz { margin: 32px 0; display: flex; flex-direction: column; gap: 22px; }
.quiz-block { background: var(--papel-alto); border: 1.5px solid var(--linha); border-radius: 16px; padding: 22px; }
.quiz-question-text { font-family: 'Rubik'; font-weight: 700; font-size: 17px; margin: 0 0 16px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  text-align: left; font-family: 'Karla'; font-size: 15px; padding: 13px 16px;
  border: 1.5px solid var(--linha); border-radius: 10px; background: var(--papel);
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.quiz-block:not(.answered) .quiz-option:hover { border-color: var(--grau); background: var(--grau-fraco); transform: translateX(2px); }
.quiz-option:disabled { cursor: default; }
.quiz-option.correct { border-color: var(--mato); background: var(--mato-fraco); color: var(--mato); font-weight: 700; }
.quiz-option.wrong { border-color: var(--grau); background: var(--grau-fraco); color: var(--grau-forte); text-decoration: line-through; }
.quiz-explanation { font-family: 'Karla'; font-size: 14px; color: var(--tinta-fraca); font-style: italic; margin: 14px 0 0; padding-top: 14px; border-top: 1px dashed var(--linha); }
.quiz-score {
  font-family: 'Rubik'; font-weight: 700; font-size: 14px; text-align: center;
  background: var(--tinta); color: var(--papel); border-radius: 999px; padding: 12px 20px; margin: 0;
}
.quiz-score-count { color: var(--sol); }

/* ---------- reações ---------- */
.reactions { max-width: 760px; margin: 44px auto 0; padding: 0 24px; text-align: center; }
.reactions-label { font-family: 'Rubik'; font-weight: 700; font-size: 13.5px; color: var(--tinta-fraca); margin-bottom: 14px; }
.reactions-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.reaction-btn {
  display: flex; align-items: center; gap: 8px; padding: 12px 20px;
  border: 1.5px solid var(--linha); border-radius: 999px; background: var(--papel-alto);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.reactions:not(.locked) .reaction-btn:hover { transform: translateY(-2px) scale(1.05); border-color: var(--grau); background: var(--grau-fraco); }
.reaction-btn .emoji { font-size: 20px; }
.reaction-btn .count { font-family: 'Rubik'; font-weight: 700; font-size: 13.5px; color: var(--tinta-fraca); font-variant-numeric: tabular-nums; }
.reaction-btn:disabled { cursor: default; opacity: .55; }
.reaction-btn.selected { border-color: var(--grau); background: var(--grau-fraco); opacity: 1; }
.reaction-btn.selected .count { color: var(--grau-forte); }

.post-share { max-width: 760px; margin: 22px auto 0; padding: 0 24px; text-align: center; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.post-share .btn-whatsapp { display: inline-flex; padding: 12px 22px; }
.btn-copy-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px;
  font-family: 'Rubik'; font-weight: 700; font-size: 13.5px; color: var(--tinta);
  background: var(--papel-alto); border: 1.5px solid var(--linha); border-radius: 10px;
  transition: transform .15s ease, border-color .15s ease;
}
.btn-copy-link:hover { border-color: var(--grau); transform: translateY(-2px); }
.btn-copy-link.copied { border-color: var(--mato); color: var(--mato); }

/* ---------- veja também ---------- */
.related-posts { max-width: 900px; margin: 56px auto 0; padding: 0 24px; }
.related-posts h2 { font-family: 'Anton'; font-weight: 400; text-transform: uppercase; font-size: 22px; letter-spacing: 0.01em; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  display: block; background: var(--papel-alto); border: 1px solid var(--linha); border-radius: 14px; overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -16px var(--sombra); }
.related-card .cover { aspect-ratio: 16/10; }
.related-card .cover .emoji { font-size: 40px; }
.related-card-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.related-card-body h3 { font-family: 'Rubik'; font-weight: 700; font-size: 14.5px; line-height: 1.35; }
@media (max-width: 720px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ---------- comentários ---------- */
.comments { max-width: 760px; margin: 56px auto 0; padding: 32px 24px 60px; border-top: 1px solid var(--linha); }
.comments h2 { font-family: 'Anton'; font-weight: 400; text-transform: uppercase; font-size: 22px; letter-spacing: 0.01em; margin-bottom: 22px; }
.comments-empty { font-family: 'Rubik'; font-size: 14px; color: var(--tinta-fraca); margin-bottom: 28px; }
.comments-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.comment { border-bottom: 1px solid var(--linha); padding-bottom: 18px; }
.comment-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.comment-head .avatar {
  width: 26px; height: 26px; border-radius: 50%; background: var(--tinta); color: var(--papel);
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex: 0 0 auto;
  font-family: 'Rubik';
}
.comment-head strong { font-family: 'Rubik'; font-weight: 700; font-size: 13.5px; }
.comment-date { font-family: 'Rubik'; font-size: 12px; color: var(--tinta-fraca); margin-left: auto; }
.comment-body { font-size: 14.5px; line-height: 1.6; color: var(--tinta); margin: 0; }

.comment-form, .submission-form { display: flex; flex-direction: column; gap: 14px; }
.comment-form .field, .submission-form .field { display: flex; flex-direction: column; gap: 6px; }
.comment-form label, .submission-form label { font-family: 'Rubik'; font-weight: 600; font-size: 12.5px; color: var(--tinta-fraca); }
.comment-form input, .comment-form textarea, .submission-form input, .submission-form textarea {
  font: inherit; font-family: 'Karla'; font-size: 14.5px; color: var(--tinta);
  background: var(--papel-alto); border: 1.5px solid var(--linha); border-radius: 10px;
  padding: 12px 14px; resize: vertical;
}
.comment-form input:focus, .comment-form textarea:focus, .submission-form input:focus, .submission-form textarea:focus { outline: none; border-color: var(--grau); }
.comment-form button, .submission-form button { align-self: flex-start; }
.field-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success, .form-error {
  font-family: 'Rubik'; font-weight: 600; font-size: 13.5px; padding: 12px 16px; border-radius: 10px; margin-bottom: 20px;
}
.form-success { background: var(--mato-fraco); color: var(--mato); }
.form-error { background: var(--grau-fraco); color: var(--grau-forte); }

/* ---------- sobre ---------- */
.about-page { max-width: 780px; }
.about-text { font-size: 16px; line-height: 1.75; color: var(--tinta); margin-bottom: 36px; }
.about-text p { margin: 0 0 18px; }
.legal-text h3 { font-family: 'Rubik'; font-weight: 700; font-size: 17px; margin: 28px 0 10px; }
.legal-text ul { margin: 0 0 18px; padding-left: 20px; list-style: disc; }
.legal-text li { margin-bottom: 8px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.about-card {
  background: var(--papel-alto); border: 1px solid var(--linha); border-radius: 14px; padding: 22px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.about-card .emoji { font-size: 32px; }
.about-card h3 { font-family: 'Rubik'; font-weight: 700; font-size: 15px; }
.about-card p { font-size: 13px; color: var(--tinta-fraca); line-height: 1.5; margin: 0; }
.about-contact {
  background: var(--tinta); color: var(--papel); border-radius: 16px; padding: 28px 30px;
}
.about-contact h3 { font-family: 'Anton'; font-weight: 400; text-transform: uppercase; font-size: 20px; margin-bottom: 8px; }
.about-contact p { color: rgba(255, 243, 238, 0.72); font-size: 14px; margin-bottom: 18px; }
.about-contact-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- manda sua zoeira ---------- */
.submission-page { max-width: 640px; }
.submission-intro { font-size: 15px; line-height: 1.6; color: var(--tinta-fraca); margin-bottom: 26px; }
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .content { grid-template-columns: 1fr; }
  .side-col { flex-direction: row; flex-wrap: wrap; }
  .side-col > * { flex: 1 1 260px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border: 1.5px solid var(--linha); border-radius: 10px; }
  .card--feature { flex-direction: column; }
  .card--feature .cover { aspect-ratio: 16/10; min-height: 0; }
  .grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .side-col { flex-direction: column; }
  .signup input { min-width: 0; flex: 1; }
}
