/* ============================================================
   Zentrovante — fan-site: Frog Jump (rã saltitona)
   Handwritten CSS. Poster / playful direction on a full-bleed
   grass-green canvas with one acid-lime accent + near-black ink.
   Fonts: Grandstander (heavy italic display) + Schibsted Grotesk.
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --grass:     #43bd67;   /* page canvas, full-bleed */
  --grass-2:   #37a659;   /* alternate green bands */
  --grass-3:   #2c8c49;   /* deep grass */
  --forest:    #123b21;   /* deep green ink: frog body, footer, dark panels */
  --lime:      #d6ff3d;   /* THE accent — CTA, highlights */
  --lime-2:    #c6f321;   /* accent hover */
  --cream:     #fbf6ea;   /* warm card surface */
  --paper:     #ffffff;
  --ink:       #0a0a0a;   /* near-black */
  --ink-70:    #17251b;
  --muted:     #45604d;
  /* illustration-only tints (scenes/mascot) */
  --sun:       #ffd23e;
  --sky:       #bfe6ff;
  --berry:     #ff85a6;
  --water:     #2fa7d8;

  --font-display: "Grandstander", ui-rounded, "Segoe UI", system-ui, sans-serif;
  --font-body: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-card: 34px;
  --r-lg: 46px;
  --r-pill: 999px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* soft diffused elevation (poster paper lifted off the grass) */
  --sh-card: 0 24px 60px rgba(9, 41, 20, .22), 0 2px 6px rgba(9, 41, 20, .10);
  --sh-lift: 0 34px 80px rgba(9, 41, 20, .28), 0 3px 8px rgba(9, 41, 20, .12);
  --sh-tab: 0 10px 22px rgba(9, 41, 20, .18);

  --gap-section: clamp(56px, 9vw, 118px);
  --pad-x: clamp(18px, 5vw, 74px);
  --measure: 62ch;
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: var(--grass);
  /* faint sun-glare so the flat green never reads as dead space */
  background-image:
    radial-gradient(120% 80% at 82% -10%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(90% 60% at 10% 110%, rgba(18,59,33,.20), transparent 60%);
  background-attachment: fixed;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 800; margin: 0;
  letter-spacing: -0.01em; line-height: 1.02;
}
p { margin: 0; }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 8px; }

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

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: 1180px; 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: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--ink); color: var(--lime);
  border-radius: var(--r-pill); padding: 7px 16px;
}
.eyebrow.on-light { background: var(--lime); color: var(--ink); }

/* accent underline scribble for headings */
.tilt { display: inline-block; transform: rotate(-2.2deg); }
.hl { color: var(--forest); }
.hl-lime {
  background: linear-gradient(180deg, transparent 62%, var(--lime) 62% 92%, transparent 92%);
  padding-inline: 2px;
}

/* ============================================================
   Header / Nav — floating cream pill on the green
   ============================================================ */
.site-head { position: sticky; top: 0; z-index: 100; padding: 14px var(--pad-x); }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  max-width: 1180px; margin-inline: auto;
  background: var(--cream);
  border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  padding: 9px 9px 9px 20px; box-shadow: var(--sh-tab);
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 22px; text-decoration: none; letter-spacing: -0.02em;
}
.brand svg { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  padding: 9px 15px; border-radius: var(--r-pill); transition: background .15s, color .15s;
}
.nav-links a:hover { background: rgba(18,59,33,.10); }
.nav-links a[aria-current="page"] { background: var(--forest); color: var(--lime); }
.nav-cta { display: inline-flex; }
.burger {
  display: none; background: var(--lime); border: 2.5px solid var(--ink);
  border-radius: 14px; width: 48px; height: 48px; 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: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: inline-flex; }
  .nav.open { border-radius: 28px; flex-wrap: wrap; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; width: 100%;
    padding: 8px 4px 4px; gap: 4px; border-top: 2px dashed rgba(10,10,10,.16); margin-top: 8px;
  }
  .nav.open .nav-links a { font-size: 18px; padding: 12px 16px; }
  .nav.open .nav-cta { display: flex; width: 100%; margin-top: 4px; }
}

/* ============================================================
   Buttons — pill, ink outline, soft press
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  text-decoration: none; cursor: pointer; border: 2.5px solid var(--ink);
  border-radius: var(--r-pill); padding: 14px 26px; background: var(--paper); color: var(--ink);
  transition: transform .14s var(--ease-out), box-shadow .16s var(--ease-out), background .15s ease;
  box-shadow: var(--sh-tab);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-card); }
.btn:active { transform: translateY(0); box-shadow: var(--sh-tab); }
.btn-lime { background: var(--lime); }
.btn-lime:hover { background: var(--lime-2); }
.btn-forest { background: var(--forest); color: var(--lime); }
.btn-forest:hover { background: #0c2d19; }
.btn-cream:hover { background: #fff; }
.btn-lg { font-size: 19.5px; padding: 18px 34px; }
.btn svg { width: 22px; height: 22px; }

/* ============================================================
   HERO — centered poster on the grass
   ============================================================ */
.hero { padding-block: clamp(20px, 4vw, 46px) var(--gap-section); text-align: center; }
.hero-inner { max-width: 900px; margin-inline: auto; display: grid; justify-items: center; }
.hero .frog-hero { width: min(280px, 66vw); height: auto; margin-bottom: clamp(6px, 2vw, 18px); }
.hero h1 {
  font-style: italic; font-weight: 900;
  font-size: clamp(44px, 10.5vw, 108px); line-height: 0.94; letter-spacing: -0.03em;
  color: var(--ink); margin-top: 6px;
}
.hero h1 .row2 { display: block; }
.hero-lead {
  margin-top: clamp(16px, 2.4vw, 24px); font-size: clamp(17px, 2.2vw, 21px);
  max-width: 52ch; color: var(--ink-70); line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(22px, 3vw, 32px); justify-content: center; }
.trust-line {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--forest);
  background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r-pill); padding: 8px 18px;
}
.trust-line svg { width: 18px; height: 18px; flex: none; }

/* floating scene chips around the hero */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  background: var(--paper); color: var(--ink); border: 2px solid var(--ink);
  border-radius: var(--r-pill); padding: 7px 15px; display: inline-flex; align-items: center; gap: 7px;
}
.chip.c-lime { background: var(--lime); }
.chip.c-sky  { background: var(--sky); }
.chip.c-sun  { background: var(--sun); }
.chip.c-berry{ background: var(--berry); }
.chip .dot { width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--ink); }

/* ============================================================
   GAME BLOCK — redirect CTA (NO iframe)
   ============================================================ */
.play-plate {
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--r-lg);
  padding: clamp(22px, 4vw, 48px); box-shadow: var(--sh-lift);
  display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(24px, 4vw, 52px); align-items: center;
}
.play-copy h2 { font-size: clamp(30px, 5vw, 52px); font-style: italic; letter-spacing: -0.025em; }
.play-copy p { margin-top: 14px; font-size: 17px; color: var(--ink-70); max-width: 46ch; }
.play-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.play-meta { margin-top: 20px; font-size: 13.5px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 4px 18px; }
.play-meta span { display: inline-flex; align-items: center; gap: 7px; }
.play-meta svg { width: 15px; height: 15px; }
.play-scene {
  border: 3px solid var(--ink); border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--sh-card); background: #cfeecb;
}
.play-scene svg, .play-scene img { width: 100%; height: auto; display: block; }
@media (max-width: 860px) {
  .play-plate { grid-template-columns: 1fr; }
  .play-scene { order: -1; }
}

/* section heads */
.sec-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 6vw, 58px); font-style: italic; letter-spacing: -0.03em; margin-top: 14px; }
.sec-head p { margin-top: 14px; font-size: 17.5px; color: var(--ink-70); max-width: var(--measure); }
.sec-head.center p { margin-inline: auto; }
.sec-head.on-dark h2, .sec-head.on-dark p { color: #eaf6e6; }

/* ============================================================
   O QUE É — split text + inline scene
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(26px, 5vw, 64px); align-items: center; }
.panel-cream {
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 46px); box-shadow: var(--sh-card);
}
.split-text h2 { font-size: clamp(28px, 4.6vw, 46px); font-style: italic; letter-spacing: -0.03em; margin: 12px 0 6px; }
.split-text p { margin-top: 14px; font-size: 16.5px; color: var(--ink-70); max-width: 54ch; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 22px 0 0; padding: 0; }
.tags li {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-pill);
  padding: 6px 14px; transition: transform .16s var(--ease-spring);
}
.tags li:hover { transform: translateY(-2px) rotate(-2deg); }
.scene-card {
  border: 3px solid var(--ink); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lift); background: var(--sky);
}
.scene-card svg, .scene-card img { width: 100%; height: auto; display: block; }
.scene-card figcaption {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--ink);
  padding: 12px 18px; background: var(--cream); border-top: 3px solid var(--ink);
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.rev .scene-card { order: -1; }
}

/* ============================================================
   COMO SE JOGA — numbered step cards
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.step {
  position: relative; background: var(--paper); border: 3px solid var(--ink);
  border-radius: var(--r-card); padding: clamp(24px, 3vw, 34px) clamp(22px, 2.6vw, 30px);
  box-shadow: var(--sh-card); transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-lift); }
.step:nth-child(1) { background: var(--lime); }
.step:nth-child(2) { background: var(--cream); }
.step:nth-child(3) { background: var(--sky); }
.step .num {
  font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 30px;
  width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid var(--ink); border-radius: 50%; background: var(--paper); margin-bottom: 16px;
  transition: transform .22s var(--ease-spring);
}
.step:hover .num { transform: rotate(-9deg) scale(1.06); }
.step h3 { font-size: clamp(21px, 2.6vw, 26px); font-style: italic; margin-bottom: 8px; }
.step p { font-size: 15.5px; color: var(--ink-70); }
.step-note {
  margin-top: clamp(18px, 2.4vw, 28px); font-family: var(--font-display); font-weight: 600;
  font-size: 15px; color: #eaf6e6; display: inline-flex; align-items: center; gap: 10px;
}
.step-note svg { width: 20px; height: 20px; flex: none; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   CORES & DIVERSÃO — full-bleed forest band with scene tiles
   ============================================================ */
.band-forest {
  background: var(--forest);
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  color: #eaf6e6;
}
.scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.scene-tile {
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--sh-card);
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
.scene-tile:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: var(--sh-lift); }
.scene-tile .art { border-bottom: 3px solid var(--ink); overflow: hidden; }
.scene-tile .art svg, .scene-tile .art img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease-out); }
.scene-tile:hover .art img, .scene-tile:hover .art svg { transform: scale(1.05); }
.scene-tile .cap { padding: 18px 20px 22px; }
.scene-tile h3 { font-size: 21px; font-style: italic; margin-bottom: 6px; color: var(--ink); }
.scene-tile p { font-size: 14.5px; color: var(--muted); }
.scene-tile.wide { grid-column: span 3; display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
.scene-tile.wide .art { border-bottom: 0; border-right: 3px solid var(--ink); }
.scene-tile.wide .cap { align-self: center; padding: clamp(22px, 3vw, 40px); }
.scene-tile.wide h3 { font-size: clamp(24px, 3.2vw, 34px); }
.scene-tile.wide p { font-size: 16px; }
@media (max-width: 860px) {
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-tile.wide { grid-column: span 2; grid-template-columns: 1fr; }
  .scene-tile.wide .art { border-right: 0; border-bottom: 3px solid var(--ink); }
}
@media (max-width: 560px) {
  .scene-grid { grid-template-columns: 1fr; }
  .scene-tile.wide { grid-column: span 1; }
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { display: grid; gap: 14px; max-width: 880px; }
.faq-item { background: var(--cream); border: 3px solid var(--ink); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-tab); transition: box-shadow .18s var(--ease-out); }
.faq-item:hover, .faq-item.open { box-shadow: var(--sh-card); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: clamp(16.5px, 2.2vw, 20px);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--ink);
}
.faq-q .plus { flex: none; width: 32px; height: 32px; border: 2.5px 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: 13px; height: 2.6px; }
.faq-q .plus::after { width: 2.6px; height: 13px; 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 .3s ease, padding .3s ease; }
.faq-a p { padding-bottom: 20px; font-size: 15.5px; color: var(--ink-70); }
.faq-item.open .faq-a { max-height: 460px; }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }

/* ============================================================
   SUBSCRIBE / CONTACT FORM
   ============================================================ */
.form-plate {
  background: var(--paper); border: 3px solid var(--ink); border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 44px); box-shadow: var(--sh-lift); max-width: 640px;
}
.form-plate.wide { max-width: none; }
.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: 2.5px solid var(--ink); border-radius: 16px; padding: 13px 15px; background: var(--cream);
}
.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: var(--ink-70); }
.check input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--forest); }
.check a { color: var(--forest); font-weight: 700; }
.form-ok {
  display: none; margin-top: 16px; background: var(--lime); border: 3px solid var(--ink);
  border-radius: 18px; padding: 16px 18px; font-family: var(--font-display); font-weight: 700;
}
.form-ok.show { display: block; }

/* two-column intro for form section */
.form-lead { max-width: 480px; }
.form-lead h2 { font-size: clamp(28px, 4.6vw, 46px); font-style: italic; letter-spacing: -0.03em; }
.form-lead p { margin-top: 14px; font-size: 16.5px; color: var(--ink-70); }
.form-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(26px, 4vw, 56px); align-items: center; }
@media (max-width: 860px) { .form-split { grid-template-columns: 1fr; } }

/* ============================================================
   Generic pages (sobre / legal / obrigado)
   ============================================================ */
.page-hero {
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 58px); box-shadow: var(--sh-card);
}
.page-hero.lime { background: var(--lime); }
.page-hero.forest { background: var(--forest); color: #eaf6e6; }
.page-hero.forest .eyebrow { background: var(--lime); color: var(--ink); }
.page-hero h1 { font-size: clamp(34px, 6.4vw, 66px); font-style: italic; letter-spacing: -0.03em; }
.page-hero p { margin-top: 16px; font-size: 18px; max-width: 58ch; color: inherit; }
.page-hero.forest p { color: #d5ecd0; }

.prose { max-width: 780px; }
.prose h2 { font-size: clamp(23px, 3.4vw, 31px); font-style: italic; margin-top: 42px; margin-bottom: 12px; }
.prose h3 { font-size: 20px; margin-top: 26px; margin-bottom: 8px; }
.prose p, .prose li { font-size: 16px; color: var(--ink-70); }
.prose p { margin-top: 12px; }
.prose ul { margin: 12px 0 0; padding-left: 22px; }
.prose li { margin-top: 8px; }
.prose a { color: var(--forest); font-weight: 700; }
.prose code { background: rgba(18,59,33,.10); padding: 1px 6px; border-radius: 6px; font-size: 14px; }
.prose .updated { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* info cards row (sobre / contactos) */
.info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.info-card {
  border: 3px solid var(--ink); border-radius: var(--r-card); padding: 26px;
  box-shadow: var(--sh-tab); transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card); }
.info-card h3 { font-size: 20px; font-style: italic; margin-bottom: 8px; }
.info-card p, .info-card a { font-size: 15px; color: var(--ink-70); }
.info-card a { color: var(--forest); font-weight: 700; text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
.info-card.a { background: var(--lime); }
.info-card.b { background: var(--cream); }
.info-card.c { background: var(--sky); }
@media (max-width: 780px) { .info-row { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.site-foot { background: var(--forest); color: #d5ecd0; border-top: 3px solid var(--ink); margin-top: var(--gap-section); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; padding-block: clamp(42px, 6vw, 66px); }
.foot-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 23px; color: #fff; }
.foot-brand svg { width: 46px; height: 46px; }
.site-foot h4 { font-family: var(--font-display); color: var(--lime); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.site-foot a { color: #d5ecd0; 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: #b9d6b3; margin-top: 12px; max-width: 42ch; }
.foot-disclaimer { border-top: 1px solid rgba(255,255,255,.18); padding-block: 22px 32px; }
.foot-disclaimer p { font-size: 12.5px; color: #a7c8a2; line-height: 1.65; max-width: 96ch; }
.foot-copy { font-size: 13px; color: #c3ddbd; margin-top: 12px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); 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; } }

/* ============================================================
   Frog idle bob (gentle)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .frog-hero { animation: frog-bob 3.6s ease-in-out infinite; transform-origin: center bottom; }
  @keyframes frog-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
}

/* ============================================================
   Hero floaters — real game sprites drifting around the poster
   ============================================================ */
.hero { position: relative; }
.floaters { position: absolute; inset: 0; overflow: visible; pointer-events: none; z-index: 0; }
.hero-inner { position: relative; z-index: 1; }
.fl-wrap { position: absolute; will-change: transform; }
.fl { width: 100%; height: auto; filter: drop-shadow(0 12px 16px rgba(9,41,20,.22)); }
.w-lily  { width: 150px; left: 2%;  top: 20%; }
.w-lotus { width: 108px; right: 3%; top: 12%; }
.w-leaf  { width: 104px; right: 9%; bottom: 20%; }
.w-daisy { width: 92px;  left: 6%;  bottom: 16%; }
.w-frog  { width: 92px;  right: 1%; top: 46%; }
@media (max-width: 900px) {
  .w-lily { width: 96px; left: -2%; top: 6%; }
  .w-lotus { width: 74px; right: -1%; top: 4%; }
  .w-leaf { width: 70px; right: 2%; bottom: 30%; }
  .w-daisy { width: 62px; left: 0; bottom: 24%; }
  .w-frog { width: 66px; right: -2%; top: 60%; }
}
@media (max-width: 560px) { .w-daisy, .w-leaf { display: none; } }
@media (prefers-reduced-motion: no-preference) {
  .fl-lily  { animation: float-a 7s ease-in-out infinite; }
  .fl-lotus { animation: float-b 8.5s ease-in-out infinite; }
  .fl-leaf  { animation: sway 6s ease-in-out infinite; }
  .fl-daisy { animation: float-a 9s ease-in-out infinite .4s; }
  .fl-frog  { animation: hop 3.4s var(--ease-spring) infinite; }
  @keyframes float-a { 0%,100%{ transform: translateY(0) rotate(-3deg);} 50%{ transform: translateY(-16px) rotate(2deg);} }
  @keyframes float-b { 0%,100%{ transform: translateY(0) rotate(3deg);} 50%{ transform: translateY(-20px) rotate(-3deg);} }
  @keyframes sway { 0%,100%{ transform: translateX(0) rotate(-8deg);} 50%{ transform: translateX(-12px) rotate(8deg);} }
  @keyframes hop { 0%,72%,100%{ transform: translateY(0) rotate(6deg);} 84%{ transform: translateY(-22px) rotate(6deg);} }
}

/* ============================================================
   Marquee ticker
   ============================================================ */
.marquee {
  background: var(--forest); color: var(--lime);
  border-block: 3px solid var(--ink); overflow: hidden; padding: 12px 0;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 22px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(18px, 3vw, 30px); letter-spacing: -0.01em;
  animation: marquee 26s linear infinite; will-change: transform;
}
.marquee-track .m-dot { color: var(--grass); font-style: normal; font-size: .6em; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   Gallery — bento of real scenes
   ============================================================ */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.8vw, 20px);
  grid-auto-flow: dense; grid-auto-rows: clamp(150px, 15vw, 200px);
}
.g-item {
  position: relative; margin: 0; overflow: hidden;
  border: 3px solid var(--ink); border-radius: var(--r-card);
  box-shadow: var(--sh-card); background: #cfeecb;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
.g-item img, .g-item .g-media { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease-out); }
.g-item:hover { transform: translateY(-5px); box-shadow: var(--sh-lift); }
.g-item:hover img, .g-item:hover .g-media { transform: scale(1.06); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 15px;
  color: #fff; padding: 26px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(6,26,13,.82));
  transform: translateY(6px); opacity: .92; transition: transform .25s var(--ease-out), opacity .25s;
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }
.g-item.g-tall { grid-row: span 2; grid-column: span 2; }
.g-item.g-wide { grid-column: span 2; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g-item.g-tall { grid-column: span 2; grid-row: span 1; }
  .g-item.g-wide { grid-column: span 2; }
}

/* soft continuous bob for showcase media */
@media (prefers-reduced-motion: no-preference) {
  .float-media { animation: media-bob 6s ease-in-out infinite; }
  @keyframes media-bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }
  .hop-media:hover img { animation: media-hop .6s var(--ease-spring); }
  @keyframes media-hop { 0%,100%{ transform: translateY(0);} 40%{ transform: translateY(-14px);} }
}

/* ============================================================
   Conhece a rã — character panel
   ============================================================ */
.char {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 5vw, 60px);
  align-items: center;
  background: var(--lime); border: 3px solid var(--ink); border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 52px); box-shadow: var(--sh-lift);
  background-image: radial-gradient(60% 60% at 30% 20%, rgba(255,255,255,.5), transparent 70%);
}
.char-media { position: relative; display: grid; place-items: center; min-height: 220px; }
.char-blob {
  position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: var(--forest); opacity: .16; filter: blur(4px);
}
.char-frog {
  position: relative; width: min(230px, 62%); height: auto;
  filter: drop-shadow(0 22px 24px rgba(9,41,20,.30)); z-index: 1;
}
.char-mini {
  position: absolute; width: 92px; height: auto; right: 6%; bottom: 2%;
  filter: drop-shadow(0 10px 12px rgba(9,41,20,.24)); z-index: 2;
}
.char-body h2 { font-size: clamp(32px, 6vw, 60px); font-style: italic; letter-spacing: -0.03em; margin: 12px 0 0; }
.char-body p { margin-top: 16px; font-size: 17px; color: var(--ink-70); max-width: 52ch; }
.char-facts { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.char-facts li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--ink);
  background: rgba(255,255,255,.62); border: 2px solid var(--ink); border-radius: var(--r-pill);
  padding: 9px 16px; transition: transform .16s var(--ease-spring);
}
.char-facts li:hover { transform: translateX(4px); }
.char-facts li span { font-size: 19px; }
@media (prefers-reduced-motion: no-preference) {
  .char-frog { animation: frog-bob 3.8s ease-in-out infinite; transform-origin: center bottom; }
  .char:hover .char-frog { animation-duration: 1.6s; }
}
@media (max-width: 780px) { .char { grid-template-columns: 1fr; text-align: center; } .char-body p { margin-inline: auto; } .char-facts li { justify-content: flex-start; } }

/* ============================================================
   O mundo verde — element cards
   ============================================================ */
.world-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 22px); }
.world-card {
  border: 3px solid var(--ink); border-radius: var(--r-card); padding: 24px 22px 26px;
  box-shadow: var(--sh-card); text-align: center;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.world-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--sh-lift); }
.world-card.wc-lime { background: var(--lime); }
.world-card.wc-cream { background: var(--cream); }
.world-card.wc-sky { background: var(--sky); }
.world-card.wc-berry { background: var(--berry); }
.wc-art { height: 96px; display: grid; place-items: center; margin-bottom: 12px; }
.wc-art img { max-height: 96px; width: auto; filter: drop-shadow(0 10px 12px rgba(9,41,20,.24)); transition: transform .25s var(--ease-spring); }
.wc-art .wc-ico { height: 92px; width: auto; filter: drop-shadow(0 10px 12px rgba(9,41,20,.24)); transition: transform .25s var(--ease-spring); }
.world-card:hover .wc-art img, .world-card:hover .wc-art .wc-ico { transform: translateY(-4px) scale(1.06) rotate(3deg); }
.world-card h3 { font-size: 19px; font-style: italic; margin-bottom: 6px; color: var(--ink); }
.world-card p { font-size: 14px; color: var(--ink-70); }
@media (max-width: 860px) { .world-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .world-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Curiosidades — fun fact cards
   ============================================================ */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.fact {
  position: relative; border: 3px solid var(--ink); border-radius: var(--r-card);
  padding: clamp(26px, 3vw, 38px) clamp(22px, 2.6vw, 30px);
  box-shadow: var(--sh-card); overflow: hidden;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.fact:hover { transform: translateY(-5px); box-shadow: var(--sh-lift); }
.fact.f-a { background: var(--cream); }
.fact.f-b { background: var(--sun); }
.fact.f-c { background: var(--sky); }
.fact-emoji {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; font-size: 30px; margin-bottom: 14px;
  background: var(--paper); border: 3px solid var(--ink); border-radius: 50%;
  transition: transform .25s var(--ease-spring);
}
.fact:hover .fact-emoji { transform: rotate(-10deg) scale(1.08); }
.fact h3 { font-size: 21px; font-style: italic; margin-bottom: 8px; color: var(--ink); }
.fact p { font-size: 15px; color: var(--ink-70); }
@media (max-width: 820px) { .facts { grid-template-columns: 1fr; } }

/* 404 */
.err-wrap { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.err-wrap .frog-404 { width: 150px; height: auto; margin: 0 auto 18px; }
.err-wrap h1 { font-size: clamp(64px, 17vw, 150px); font-style: italic; color: var(--forest); }
.err-wrap p { font-size: 18px; margin: 12px auto 26px; max-width: 46ch; color: var(--ink-70); }
