/* ============================================================
   Frog Road — fan-site (demo grátis) · sticker/bento arcade
   Handwritten CSS. Theme base: "bento" (linen + sticker cards).
   Fonts: Fredoka (display) + Inter (text).
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --lime: #d2e823;
  --lime-wash: #ebffc5;
  --lavender: #e9c0e9;
  --cobalt: #2665d6;
  --cobalt-deep: #061492;
  --maroon: #780016;
  --forest: #254f1a;
  --mustard: #d6a337;
  --linen: #f3f3f1;
  --white: #ffffff;
  --ink: #000000;
  --sage: #676b5f;

  --font-display: "Fredoka", ui-rounded, "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --stroke: 3px;
  --r-card: 28px;
  --r-lg: 40px;
  --r-pill: 999px;

  /* motion — strong ease-out for responsive UI feedback */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* sticker elevation — hard offset shadows are the material of this design.
     Present at REST (not just hover) so cards read as physical stickers. */
  --sh-rest: 4px 4px 0 var(--ink);
  --sh-lift: 7px 7px 0 var(--ink);
  --sh-soft: 3px 3px 0 var(--ink);
  --shadow-sticker: var(--sh-lift);

  /* fluid rhythm */
  --gap-section: clamp(52px, 8vw, 104px);
  --pad-x: clamp(18px, 5vw, 72px);
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* linen base + faint dot-grid so large flat areas don't read as dead space */
  background-color: var(--linen);
  background-image: radial-gradient(rgba(0,0,0,.045) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: -11px -11px;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0; letter-spacing: -0.02em; line-height: 1.02; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--lime); padding: 10px 16px;
  border-radius: 10px; font-weight: 600; transition: top .18s;
}
.skip-link:focus { top: 12px; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--gap-section); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--white); color: var(--ink); border: var(--stroke) solid var(--ink);
  border-radius: var(--r-pill); padding: 6px 16px;
  box-shadow: 2px 2px 0 var(--ink);
}

/* ---- Road-stripe divider (zebra) ---- */
.zebra {
  height: 22px; width: 100%;
  background: repeating-linear-gradient(90deg, var(--ink) 0 26px, transparent 26px 52px);
  border-top: var(--stroke) solid var(--ink);
  border-bottom: var(--stroke) solid var(--ink);
}

/* ============================================================
   Header / Nav — floating white pill
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 100;
  padding: 14px var(--pad-x);
  background: var(--linen);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; max-width: 1200px; margin-inline: auto;
  background: var(--white);
  border: var(--stroke) solid var(--ink);
  border-radius: 18px;
  padding: 8px 8px 8px 18px;
  box-shadow: var(--sh-rest);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; text-decoration: none; }
.brand svg { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: 15px;
  padding: 9px 14px; border-radius: 10px; border: 2px solid transparent;
}
.nav-links a:hover { border-color: var(--ink); }
.nav-links a[aria-current="page"] { background: var(--lime); border-color: var(--ink); font-weight: 600; }
.nav-cta { display: inline-flex; }
.burger {
  display: none; background: var(--lime); border: var(--stroke) solid var(--ink);
  border-radius: 12px; width: 46px; height: 46px; cursor: pointer;
  align-items: center; justify-content: center; padding: 0;
}
.burger span { display: block; width: 20px; height: 2.6px; background: var(--ink); border-radius: 2px; position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2.6px; background: var(--ink); border-radius: 2px; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: var(--pad-x); right: var(--pad-x); top: 74px;
    background: var(--white); border: var(--stroke) solid var(--ink);
    border-radius: 18px; padding: 12px; gap: 6px;
  }
  .nav.open .nav-links a { font-size: 17px; padding: 12px 14px; }
  .nav.open .nav-cta { display: flex; margin-top: 6px; }
}

/* ============================================================
   Buttons — sticker style (border = elevation)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  text-decoration: none; cursor: pointer; border: var(--stroke) solid var(--ink);
  border-radius: var(--r-pill); padding: 14px 26px; background: var(--white); color: var(--ink);
  box-shadow: var(--sh-soft);
  transition: transform .12s var(--ease-out), box-shadow .12s var(--ease-out), background .15s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: var(--sh-rest); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-lime { background: var(--lime); }
.btn-lime:hover { background: #c6dd15; }
.btn-white:hover { background: var(--linen); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: rgba(0,0,0,.06); }
.btn-lg { font-size: 19px; padding: 17px 32px; }
.btn svg { width: 22px; height: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-block: clamp(30px, 5vw, 60px) var(--gap-section); }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.hero-panel {
  background: var(--lime); border: var(--stroke) solid var(--ink);
  border-radius: var(--r-lg); padding: clamp(26px, 4vw, 46px);
  box-shadow: var(--sh-lift);
}
.hero h1 {
  font-size: clamp(40px, 8vw, 82px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 0.98;
}
.hero h1 .frog-word { color: var(--forest); }
.hero-lead {
  margin-top: 18px; font-size: clamp(16px, 2.1vw, 19px); max-width: 46ch;
  color: #1a1a1a;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.trust-line {
  display: flex; align-items: center; gap: 9px; margin-top: 20px;
  font-size: 14px; font-weight: 500; color: #14320c;
}
.trust-line svg { width: 18px; height: 18px; flex: none; }

/* mascot card */
.hero-mascot {
  position: relative; background: var(--lavender);
  border: var(--stroke) solid var(--ink); border-radius: var(--r-lg);
  padding: 20px; display: flex; align-items: flex-end; justify-content: flex-start;
  min-height: 340px; overflow: hidden;
  box-shadow: var(--sh-lift);
}
.hero-mascot .road-lines {
  position: absolute; inset: 0; z-index: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 40px, var(--ink) 40px 64px) center / 12px 100% no-repeat;
  opacity: .12;
}
.hero-mascot .frog-hero { position: relative; z-index: 1; width: min(238px, 62%); height: auto; margin-left: 2%; filter: drop-shadow(0 0 0 transparent); }
.mascot-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--mustard); border: var(--stroke) solid var(--ink);
  border-radius: var(--r-pill); padding: 6px 14px; font-family: var(--font-display);
  font-weight: 600; font-size: 13px; transform: rotate(-5deg);
  box-shadow: 2px 2px 0 var(--ink);
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mascot { min-height: 260px; order: -1; }
}

/* ============================================================
   GAME FRAME — click to play
   ============================================================ */
.game-plate {
  background: var(--white); border: var(--stroke) solid var(--ink);
  border-radius: var(--r-lg); padding: clamp(14px, 2.5vw, 22px);
  box-shadow: var(--sh-lift);
}
.game-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.game-head h2 { font-size: clamp(24px, 3.5vw, 34px); }
.game-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  border: 2px solid var(--ink); border-radius: var(--r-pill); padding: 4px 12px; background: var(--lime-wash);
  box-shadow: 2px 2px 0 var(--ink);
}
.badge.b-cobalt { background: var(--cobalt); color: #fff; }
.badge.b-lav { background: var(--lavender); }

.game-stage {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  border: var(--stroke) solid var(--ink); border-radius: var(--r-card);
  overflow: hidden; background: var(--forest);
}
@media (min-width: 720px) { .game-stage { aspect-ratio: 16 / 10; } }
.game-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.game-poster {
  position: absolute; inset: 0; z-index: 2; cursor: pointer; border: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  color: var(--white); text-align: center; padding: 24px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 30px, transparent 30px 60px),
    linear-gradient(rgba(6,20,10,.62), rgba(6,20,10,.74)),
    url(../img/pond-wide.webp) center / cover no-repeat,
    var(--forest);
  transition: background-color .2s var(--ease-out);
}
.game-poster:hover h3 { transform: translateY(-2px); }
.game-poster h3 { transition: transform .18s var(--ease-out); }
.game-poster .road-dash {
  position: absolute; left: 0; right: 0; top: 50%; height: 8px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, var(--lime) 0 34px, transparent 34px 68px); opacity: .5;
}
.game-poster .poster-frog { width: 96px; height: auto; position: relative; z-index: 1; }
.game-poster h3 { position: relative; z-index: 1; font-size: clamp(22px, 4vw, 32px); color: var(--white); }
.game-poster p { position: relative; z-index: 1; font-size: 14px; max-width: 40ch; color: #e7f0d6; }
.game-poster .btn { position: relative; z-index: 1; }
.game-poster:hover .btn-lime { background: #c6dd15; }

.game-foot { margin-top: 14px; font-size: 13px; color: var(--sage); display: flex; flex-wrap: wrap; gap: 6px 16px; }

/* ============================================================
   BENTO — como se joga / features
   ============================================================ */
.bento {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.tile {
  border: var(--stroke) solid var(--ink); border-radius: var(--r-card);
  padding: clamp(20px, 2.6vw, 30px); position: relative; overflow: hidden;
  box-shadow: var(--sh-rest);
}
.tile h3 { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 8px; }
.tile p { font-size: 15.5px; }
.tile .num {
  font-family: var(--font-display); font-weight: 700; font-size: 30px;
  width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center;
  border: var(--stroke) solid var(--ink); border-radius: 50%; margin-bottom: 14px;
  background: var(--white); box-shadow: 2px 2px 0 var(--ink);
  transition: transform .2s var(--ease-spring);
}
.tile:hover .num { transform: rotate(-8deg) scale(1.05); }
.tile-lime { background: var(--lime); grid-column: span 2; }
.tile-white { background: var(--white); grid-column: span 2; }
.tile-lav { background: var(--lavender); grid-column: span 2; }
.tile-cobalt { background: var(--cobalt); color: #fff; grid-column: span 3; }
.tile-cobalt .num, .tile-cobalt h3 { color: #fff; }
.tile-cobalt .num { border-color: #fff; }
.tile-mustard { background: var(--mustard); grid-column: span 3; }
.tile-forest { background: var(--forest); color: #fff; grid-column: span 3; }
.tile-forest .num { border-color: var(--lime); color: var(--lime); }
.tile-lav.tile-wide { grid-column: span 3; }
.tile .icon-road { width: 40px; height: 40px; margin-bottom: 12px; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-lime, .tile-white, .tile-lav, .tile-cobalt, .tile-mustard, .tile-forest, .tile-lav.tile-wide { grid-column: span 1; }
  .tile-forest, .tile-cobalt { grid-column: span 2; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
  .tile, .tile-forest, .tile-cobalt { grid-column: span 1; }
}

/* section heads */
.sec-head { max-width: 720px; margin-bottom: clamp(26px, 4vw, 44px); }
.sec-head h2 { font-size: clamp(28px, 5vw, 46px); letter-spacing: -0.03em; margin-top: 14px; }
.sec-head p { margin-top: 12px; font-size: 17px; color: #333; }

/* ============================================================
   Honest note strip
   ============================================================ */
.note-strip {
  background: var(--maroon); color: #fff;
  border: var(--stroke) solid var(--ink); border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 40px); display: grid; gap: 16px;
  grid-template-columns: auto 1fr; align-items: center;
  box-shadow: var(--sh-lift);
}
.note-strip .frog-mini { width: 74px; height: auto; flex: none; }
.note-strip h2 { color: var(--lime); font-size: clamp(22px, 3.4vw, 32px); }
.note-strip p { color: #f4e3e5; font-size: 16px; margin-top: 8px; max-width: 60ch; }
@media (max-width: 620px) { .note-strip { grid-template-columns: 1fr; text-align: left; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { display: grid; gap: 14px; max-width: 860px; }
.faq-item { background: var(--white); border: var(--stroke) solid var(--ink); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-rest); }
.faq-item.open { box-shadow: var(--sh-lift); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(16px, 2.2vw, 19px);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--ink);
}
.faq-q .plus { flex: none; width: 30px; height: 30px; border: 2px solid var(--ink); border-radius: 50%; position: relative; transition: background .15s; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--ink); left: 50%; top: 50%; transform: translate(-50%,-50%); }
.faq-q .plus::before { width: 12px; height: 2.4px; }
.faq-q .plus::after { width: 2.4px; height: 12px; transition: transform .2s; }
.faq-q[aria-expanded="true"] .plus { background: var(--lime); }
.faq-q[aria-expanded="true"] .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; }
.faq-a p { padding-bottom: 20px; font-size: 15.5px; color: #2a2a2a; }
.faq-item.open .faq-a { max-height: 400px; }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }

/* ============================================================
   Generic prose (sobre / legal)
   ============================================================ */
.page-hero {
  background: var(--lime); border: var(--stroke) solid var(--ink);
  border-radius: var(--r-lg); padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--sh-lift);
}
.page-hero.alt { background: var(--lavender); }
.page-hero.cob { background: var(--cobalt); color: #fff; }
.page-hero h1 { font-size: clamp(32px, 6vw, 60px); letter-spacing: -0.03em; }
.page-hero p { margin-top: 14px; font-size: 18px; max-width: 60ch; }

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(23px, 3.4vw, 30px); margin-top: 40px; margin-bottom: 12px; }
.prose h3 { font-size: 20px; margin-top: 26px; margin-bottom: 8px; }
.prose p, .prose li { font-size: 16px; color: #262626; }
.prose p { margin-top: 12px; }
.prose ul { margin: 12px 0 0; padding-left: 22px; }
.prose li { margin-top: 8px; }
.prose a { color: var(--cobalt); font-weight: 600; }
.prose .updated { font-size: 14px; color: var(--sage); margin-top: 6px; }

/* info cards row (sobre/contactos) */
.info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.info-card { border: var(--stroke) solid var(--ink); border-radius: var(--r-card); padding: 26px; box-shadow: var(--sh-rest); transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lift); }
.info-card h3 { font-size: 20px; margin-bottom: 8px; }
.info-card p { font-size: 15px; color: #2a2a2a; }
.info-card.c1 { background: var(--lime); }
.info-card.c2 { background: var(--mustard); }
.info-card.c3 { background: var(--lavender); }
@media (max-width: 760px) { .info-row { grid-template-columns: 1fr; } }

/* ============================================================
   Contact form
   ============================================================ */
.form-plate { background: var(--white); border: var(--stroke) solid var(--ink); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--sh-lift); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px;
  border: 2px solid var(--ink); border-radius: 10px; padding: 12px 14px; background: var(--linen);
}
.field input:focus, .field textarea:focus { outline: 3px solid var(--lime); outline-offset: 1px; border-color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: #2a2a2a; }
.check input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--forest); }
.form-ok { display: none; margin-top: 16px; background: var(--lime); border: var(--stroke) solid var(--ink); border-radius: 14px; padding: 16px; font-weight: 600; }
.form-ok.show { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-foot { background: var(--maroon); color: #fff; border-top: var(--stroke) solid var(--ink); margin-top: var(--gap-section); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-block: clamp(40px, 6vw, 64px); }
.foot-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.foot-brand svg { width: 44px; height: 44px; }
.site-foot h4 { font-family: var(--font-display); color: var(--lime); font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.site-foot a { color: #f4e3e5; text-decoration: none; }
.site-foot a:hover { color: var(--lime); text-decoration: underline; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 15px; }
.foot-about { font-size: 14px; color: #ecd7d9; margin-top: 12px; max-width: 42ch; }
.foot-disclaimer { border-top: 1px solid rgba(255,255,255,.22); padding-block: 22px 30px; }
.foot-disclaimer p { font-size: 12.5px; color: #e3c9cc; line-height: 1.6; max-width: 90ch; }
.foot-copy { font-size: 13px; color: #f0d6d9; margin-top: 12px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ============================================================
   Reveal on scroll (noscript fallback below)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Microinteractions (tasteful, ease-out, < 300ms) + real-image frames
   ============================================================ */
.tile { transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-sticker); }
.faq-item { transition: box-shadow .18s var(--ease-out); }
.faq-item:hover { box-shadow: var(--shadow-sticker); }
.badge { transition: transform .15s var(--ease-out); }
.game-plate:hover .badge { transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) {
  .tile, .faq-item, .badge, .shot img, .polaroid img, .frog-hero,
  .btn, .info-card, .tags li, .feat-ic, .tile .num, .dicas li { transition: none !important; }
  .tile:hover, .btn:hover, .info-card:hover, .tags li:hover,
  .tile:hover .num, .feat:hover .feat-ic, .dicas li:hover { transform: none; }
}

/* Shared image frame — thick outline, hover zoom inside clip */
.shot, .polaroid, .tile-shot, .hero-shot, .curio { --frame: var(--stroke) solid var(--ink); }
.shot {
  margin: 0; border: var(--stroke) solid var(--ink); border-radius: var(--r-card);
  overflow: hidden; background: var(--white); position: relative;
  box-shadow: var(--sh-lift);
}
.shot img { width: 100%; height: auto; transition: transform .35s var(--ease-out); }
.shot:hover img { transform: scale(1.04); }
.shot figcaption, .polaroid figcaption {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  padding: 10px 16px; background: var(--linen); border-top: var(--stroke) solid var(--ink);
}
.shot-tall img { aspect-ratio: 432 / 662; object-fit: cover; }

/* ============================================================
   Split section — text + real image
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 56px); align-items: center;
}
.split-rev { grid-template-columns: 0.85fr 1.15fr; }
.split-text h2 { font-size: clamp(26px, 4.4vw, 42px); letter-spacing: -0.03em; margin: 14px 0 4px; }
.split-text p { margin-top: 14px; font-size: 16.5px; color: #262626; max-width: 56ch; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 20px 0 0; padding: 0; }
.tags li {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  background: var(--lime-wash); border: 2px solid var(--ink); border-radius: var(--r-pill);
  padding: 5px 13px; box-shadow: 2px 2px 0 var(--ink);
  transition: transform .15s var(--ease-spring);
}
.tags li:hover { transform: translateY(-2px) rotate(-2deg); }
@media (max-width: 820px) {
  .split, .split-rev { grid-template-columns: 1fr; }
  .split-rev .shot { order: -1; }
  .shot-tall { max-width: 380px; }
}

/* ============================================================
   Gallery — tilted "polaroid" stickers of real screenshots
   ============================================================ */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px); align-items: start;
}
.polaroid {
  margin: 0; background: var(--white); border: var(--stroke) solid var(--ink);
  border-radius: 18px; padding: 12px 12px 0; overflow: hidden;
  box-shadow: var(--sh-rest);
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
.polaroid img { width: 100%; height: auto; border-radius: 10px; border: 2px solid var(--ink); display: block; }
.polaroid figcaption {
  border: 0; background: none; text-align: center; color: #333;
  font-size: 13.5px; padding: 12px 6px 16px;
}
.p-tilt-a { transform: rotate(-1.6deg); }
.p-tilt-b { transform: rotate(1.2deg); margin-top: 14px; }
.p-tilt-c { transform: rotate(-0.8deg); }
.polaroid:hover { transform: rotate(0) translateY(-5px); box-shadow: var(--shadow-sticker); }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr; }
  .p-tilt-a, .p-tilt-b, .p-tilt-c { transform: none; margin-top: 0; } }

/* Image tile inside the "como se joga" bento */
.tile-shot {
  grid-column: span 6; margin: 0; padding: 0; background: var(--forest);
  border: var(--stroke) solid var(--ink); border-radius: var(--r-card); overflow: hidden;
}
.tile-shot img { width: 100%; height: auto; display: block; transition: transform .4s var(--ease-out); }
.tile-shot:hover img { transform: scale(1.03); }
.tile-shot figcaption {
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--lime);
  padding: 12px 20px; background: var(--forest); border-top: var(--stroke) solid var(--ink);
}
@media (max-width: 900px) { .tile-shot { grid-column: span 2; } }
@media (max-width: 520px) { .tile-shot { grid-column: span 1; } }

/* ============================================================
   Características — feature grid
   ============================================================ */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.feat {
  background: var(--white); border: var(--stroke) solid var(--ink); border-radius: var(--r-card);
  padding: clamp(20px, 2.6vw, 28px); box-shadow: var(--sh-rest);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sticker); }
.feat:nth-child(3n+1) { background: var(--lime-wash); }
.feat:nth-child(3n+2) { background: var(--white); }
.feat:nth-child(3n) { background: #f6ecff; }
.feat-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; font-size: 26px; margin-bottom: 14px;
  border: var(--stroke) solid var(--ink); border-radius: 16px; background: var(--white);
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .2s var(--ease-spring);
}
.feat:hover .feat-ic { transform: rotate(-6deg) scale(1.06); }
.feat h3 { font-size: 20px; margin-bottom: 6px; }
.feat p { font-size: 15px; color: #2a2a2a; }
@media (max-width: 860px) { .feats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feats { grid-template-columns: 1fr; } }

/* ============================================================
   Dicas — numbered sticker list
   ============================================================ */
.dicas { list-style: none; counter-reset: dica; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.dicas li {
  counter-increment: dica; position: relative; background: var(--white);
  border: var(--stroke) solid var(--ink); border-radius: 18px; padding: 15px 18px 15px 60px;
  font-size: 15.5px; color: #262626; box-shadow: var(--sh-soft);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.dicas li::before {
  content: counter(dica); position: absolute; left: 12px; top: 12px;
  width: 36px; height: 36px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  background: var(--lime); border: 2px solid var(--ink); border-radius: 50%;
  box-shadow: 2px 2px 0 var(--ink);
}
.dicas li:hover { transform: translate(-1px, -2px); box-shadow: var(--sh-rest); }
@media (prefers-reduced-motion: reduce) { .dicas li:hover { transform: none; } }

/* ============================================================
   Curiosidades — full-bleed forest band
   ============================================================ */
.curio {
  background:
    linear-gradient(rgba(6,20,10,.82), rgba(6,20,10,.9)),
    url(../img/pond-wide.webp) center / cover no-repeat, var(--forest);
  border-top: var(--stroke) solid var(--ink); border-bottom: var(--stroke) solid var(--ink);
  color: #fff; padding-block: clamp(48px, 7vw, 92px);
}
.curio .eyebrow-light { background: var(--lime); border-color: var(--ink); color: var(--ink); }
.curio-inner h2 { color: #fff; font-size: clamp(26px, 4.6vw, 44px); letter-spacing: -0.03em; margin-top: 14px; max-width: 22ch; }
.curio-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(22px, 3vw, 36px); }
.curio-cols p { font-size: 15.5px; color: #eaf3df; line-height: 1.65; }
.curio-cols p:first-child::first-letter {
  font-family: var(--font-display); font-weight: 700; font-size: 3.1em; float: left;
  line-height: 0.8; padding: 4px 10px 0 0; color: var(--lime);
}
@media (max-width: 820px) { .curio-cols { grid-template-columns: 1fr; gap: 16px; } }

/* Hero real-screenshot sticker */
.hero-shot {
  position: absolute; right: 14px; bottom: 14px; z-index: 3; width: min(46%, 220px);
  margin: 0; background: var(--white); border: var(--stroke) solid var(--ink);
  border-radius: 16px; padding: 8px 8px 0; transform: rotate(3deg);
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
  box-shadow: 4px 4px 0 rgba(0,0,0,.5);
}
.hero-shot img { width: 100%; height: auto; border-radius: 9px; border: 2px solid var(--ink); display: block; }
.hero-shot figcaption {
  font-family: var(--font-display); font-weight: 600; font-size: 11px; color: #444;
  text-align: center; padding: 6px 4px 8px;
}
.hero-shot:hover { transform: rotate(0) scale(1.03); box-shadow: var(--shadow-sticker); }
@media (max-width: 820px) { .hero-shot { width: 150px; right: 10px; bottom: 10px; } }
@media (max-width: 420px) { .hero-shot { display: none; } }

/* Animated hop on the hero mascot — gentle idle bob + bigger hop on hover */
.frog-hero { transition: transform .3s var(--ease-out); }
.hero-mascot:hover .frog-hero { transform: translateY(-10px); }
@media (prefers-reduced-motion: no-preference) {
  .frog-hero { animation: frog-bob 3.4s ease-in-out infinite; }
  @keyframes frog-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  .hero-mascot:hover .frog-hero { animation-play-state: paused; }
}
@media (prefers-reduced-motion: reduce) { .hero-mascot:hover .frog-hero { transform: none; } }

/* Moving road dashes on the play poster (paused for reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .game-poster .road-dash { animation: road-run 1.1s linear infinite; }
  @keyframes road-run { to { background-position: 68px 0; } }
}

/* 404 */
.err-wrap { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.err-wrap .frog-404 { width: 140px; height: auto; margin: 0 auto 20px; }
.err-wrap h1 { font-size: clamp(60px, 16vw, 140px); color: var(--forest); }
.err-wrap p { font-size: 18px; margin: 12px 0 26px; max-width: 44ch; }
