/* ============================================================
   MundoMobile — styles.css
   Tema visual: OLIPOP (creme quente + verde-tília, serif retro
   de display + sans limpo, pílulas, cartões suaves, plano).
   BEM. Sem bibliotecas externas.
   ============================================================ */

:root {
  /* Cores — base do tema OLIPOP */
  --color-forest-ink: #14433d;   /* verde-tília: títulos, CTA primário, rodapé */
  --color-forest-deep: #0f342f;  /* variação escura para hover */
  --color-cream-paper: #fdf7e7;  /* tela creme — fundo de página */
  --color-cream-deep: #f6edd6;   /* creme ligeiramente mais fundo */
  --color-mint-sage: #d3e8e3;    /* painel hero / lavagens suaves */
  --color-mint-soft: #e6f1ee;
  --color-charcoal: #3a3a3a;      /* corpo de texto */
  --color-muted: #6b6b63;         /* texto secundário */
  --color-white: #ffffff;
  --color-hairline: #e3e3e3;
  --color-wine: #7e0022;          /* acento vinho — etiquetas especiais */
  --color-bright-teal: #2ad2c9;   /* ação secundária */
  --color-fountain-teal: #008b70; /* bordas de inputs */

  /* Pastéis "flavor-locked" — só nos cartões de jogos */
  --flavor-1: #f8d5c0; /* cozinha — pêssego */
  --flavor-2: #fdf4b5; /* restaurante — banana */
  --flavor-3: #d7ecb0; /* quinta — folha */
  --flavor-4: #e3d2ed; /* decoração — uva */
  --flavor-5: #febac4; /* design — maçã rosada */
  --flavor-6: #cfe7e2; /* match-3 — menta */

  /* Tipografia */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Espaçamento (base 4px) */
  --space-4: 4px;  --space-8: 8px;  --space-12: 12px; --space-16: 16px;
  --space-20: 20px; --space-24: 24px; --space-32: 32px; --space-40: 40px;
  --space-56: 56px; --space-72: 72px; --space-96: 96px;

  /* Raios */
  --radius-card: 16px;
  --radius-panel: 24px;
  --radius-full: 50px;

  /* Layout */
  --page-max: 1200px;
  --header-h: 68px;

  /* Sombra — só no CTA primário (brilho ambiente suave) */
  --glow-cta: rgba(20, 67, 61, 0.22) 0 6px 24px 0;
}

/* ----------------------------- Reset base ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background: var(--color-cream-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-forest-ink); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.04; font-weight: 800; color: var(--color-forest-ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--color-fountain-teal); outline-offset: 2px; border-radius: 6px; }

/* ----------------------------- Container ---------------------------- */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.section { padding-block: clamp(48px, 8vw, 92px); }
.section--tint { background: var(--color-cream-deep); }

.section__head { text-align: center; max-width: 660px; margin: 0 auto clamp(32px, 5vw, 56px); }
.section__eyebrow {
  display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-wine);
  background: var(--color-white); border: 1px solid var(--color-hairline);
  padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: var(--space-20);
}
.section__title { font-size: clamp(32px, 5.2vw, 52px); font-weight: 900; }
.section__subtitle { margin-top: var(--space-16); font-size: clamp(16px, 2vw, 18px); color: var(--color-muted); }

/* ----------------------------- Botões ---------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 16px; line-height: 1; text-decoration: none;
  padding: 15px 28px; border-radius: var(--radius-full); border: 2px solid transparent;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--color-forest-ink); color: var(--color-white); box-shadow: var(--glow-cta); }
.btn--primary:hover { background: var(--color-forest-deep); }
.btn--secondary { background: var(--color-bright-teal); color: var(--color-forest-ink); }
.btn--secondary:hover { background: #1fc0b7; }
.btn--ghost { background: transparent; color: var(--color-forest-ink); border-color: var(--color-forest-ink); }
.btn--ghost:hover { background: var(--color-forest-ink); color: var(--color-white); }
.btn--block { width: 100%; }
.btn__icon { width: 18px; height: 18px; flex: 0 0 auto; }

/* ============================================================
   1. Announce + Header
   ============================================================ */
.announce {
  background: var(--color-forest-ink); color: var(--color-white);
  text-align: center; font-size: 13px; letter-spacing: .02em; padding: 7px 16px;
}
.announce strong { font-weight: 700; }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 247, 231, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-hairline);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: var(--space-16); }
.brand { font-family: var(--font-display); font-weight: 900; font-size: 24px; letter-spacing: .02em; text-transform: uppercase; color: var(--color-forest-ink); text-decoration: none; line-height: 1; }
.brand__accent { color: var(--color-wine); }

.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: inline-block; padding: 8px 12px; font-size: 15px; font-weight: 600;
  color: var(--color-charcoal); text-decoration: none; border-radius: var(--radius-full);
  transition: background-color .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--color-mint-sage); color: var(--color-forest-ink); }
.nav__cta { margin-left: var(--space-12); padding: 11px 20px; font-size: 15px; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--color-hairline);
  background: var(--color-white); border-radius: 12px; align-items: center; justify-content: center; color: var(--color-forest-ink);
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .nav__icon--close { display: none; }
.nav.is-open .nav__toggle .nav__icon--open { display: none; }
.nav.is-open .nav__toggle .nav__icon--close { display: block; }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; order: 2; }
  .nav__panel {
    position: fixed; inset: calc(var(--header-h) + 1px) 0 auto 0;
    background: var(--color-cream-paper); border-bottom: 1px solid var(--color-hairline);
    padding: var(--space-16) clamp(20px, 5vw, 40px) var(--space-24);
    display: none; box-shadow: 0 18px 30px -20px rgba(20,67,61,.4);
  }
  .nav.is-open .nav__panel { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 14px 16px; font-size: 17px; }
  .nav__cta { margin: var(--space-12) 0 0; width: 100%; }
}

/* ============================================================
   2. Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(253,247,231,.80) 0%, rgba(253,247,231,.90) 100%),
    radial-gradient(60% 55% at 82% 8%, rgba(211,232,227,.55), transparent 60%),
    radial-gradient(50% 45% at 8% 92%, rgba(248,213,192,.42), transparent 62%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(44px, 7vw, 84px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--color-forest-ink);
  background: var(--color-white); border: 1px solid var(--color-hairline);
  padding: 7px 16px; border-radius: var(--radius-full); margin-bottom: var(--space-20);
}
.hero__badge svg { width: 15px; height: 15px; color: var(--color-fountain-teal); }
.hero__title { font-size: clamp(40px, 7.2vw, 74px); font-weight: 900; letter-spacing: -0.01em; }
.hero__title em { font-style: normal; color: var(--color-wine); }
.hero__subtitle { margin-top: var(--space-20); font-size: clamp(17px, 2.2vw, 20px); color: var(--color-charcoal); max-width: 34ch; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-12); margin-top: var(--space-32); }
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-24); margin-top: var(--space-32); }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-num { font-family: var(--font-display); font-weight: 900; font-size: 28px; color: var(--color-forest-ink); line-height: 1; }
.hero__meta-label { font-size: 13px; color: var(--color-muted); margin-top: 4px; }

/* Painel showcase (mint) com ícones dos jogos */
.hero__panel {
  position: relative; background: var(--color-mint-sage); border-radius: var(--radius-panel);
  padding: clamp(20px, 3vw, 32px); border: 1px solid rgba(20,67,61,.08);
}
.hero__panel-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-forest-ink); margin-bottom: var(--space-16); display: flex; align-items: center; gap: 8px; }
.hero__panel-label svg { width: 16px; height: 16px; }
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-16); }
.showcase__item { background: var(--color-white); border-radius: var(--radius-card); padding: 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.showcase__icon { width: 64px; height: 64px; border-radius: 16px; }
.showcase__name { font-size: 12px; font-weight: 600; color: var(--color-charcoal); line-height: 1.25; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__subtitle { max-width: none; }
}
@media (max-width: 420px) {
  .showcase { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   3. Catálogo de jogos
   ============================================================ */
.games__grid { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 28px); }
@media (min-width: 640px) { .games__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .games__grid { grid-template-columns: repeat(3, 1fr); } }

.game-card {
  display: flex; flex-direction: column; border-radius: var(--radius-card);
  background: var(--card-bg, var(--color-white)); overflow: hidden;
  border: 1px solid rgba(20,67,61,.06);
}
.game-card--1 { --card-bg: var(--flavor-1); }
.game-card--2 { --card-bg: var(--flavor-2); }
.game-card--3 { --card-bg: var(--flavor-3); }
.game-card--4 { --card-bg: var(--flavor-4); }
.game-card--5 { --card-bg: var(--flavor-5); }
.game-card--6 { --card-bg: var(--flavor-6); }

.game-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: rgba(255,255,255,.5); }
.game-card__shot { width: 100%; height: 100%; object-fit: cover; }
.game-card__icon {
  position: absolute; left: 16px; bottom: -26px; width: 64px; height: 64px;
  border-radius: 16px; border: 3px solid var(--card-bg, #fff); background: #fff;
}
.game-card__body { padding: 34px var(--space-20) var(--space-20); display: flex; flex-direction: column; gap: var(--space-8); flex: 1; }
.game-card__title { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--color-forest-ink); }
.game-card__dev { font-size: 13px; color: var(--color-muted); font-weight: 600; }
.game-card__genre { align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-forest-ink); background: rgba(255,255,255,.7); padding: 4px 12px; border-radius: var(--radius-full); }
.game-card__rating { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.game-card__rating-num { font-weight: 700; font-size: 14px; color: var(--color-forest-ink); }
.game-card__desc { font-size: 15px; color: var(--color-charcoal); line-height: 1.6; flex: 1; }
.game-card__btn { margin-top: var(--space-12); }

/* Estrelas (SVG com preenchimento fracionário) */
.stars { position: relative; display: inline-flex; line-height: 0; }
.stars__row { display: inline-flex; gap: 2px; }
.stars__row svg { width: 16px; height: 16px; }
.stars__row--base svg { color: rgba(20,67,61,.22); }
.stars__row--fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; }
.stars__row--fill svg { color: var(--color-forest-ink); }

/* ============================================================
   4. Como ganhamos (transparência)
   ============================================================ */
.earn__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.earn__figure { position: relative; }
.earn__panel { background: var(--color-mint-sage); border-radius: var(--radius-panel); padding: clamp(20px, 3vw, 32px); }
.earn__shots { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); }
.earn__shot { border-radius: var(--radius-card); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; border: 3px solid #fff; }
.earn__shot--wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.earn__label { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-wine); margin-bottom: var(--space-16); }
.earn__title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; }
.earn__lead { margin-top: var(--space-16); font-size: 18px; color: var(--color-charcoal); }
.earn__list { margin-top: var(--space-24); display: flex; flex-direction: column; gap: var(--space-16); }
.earn__item { display: flex; gap: var(--space-16); align-items: flex-start; }
.earn__item-icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--color-white); border: 1px solid var(--color-hairline); display: flex; align-items: center; justify-content: center; color: var(--color-forest-ink); }
.earn__item-icon svg { width: 20px; height: 20px; }
.earn__item-text strong { display: block; color: var(--color-forest-ink); font-weight: 700; }
.earn__item-text span { font-size: 15px; color: var(--color-muted); }
.earn__note { margin-top: var(--space-24); font-size: 15px; }
@media (max-width: 860px) { .earn__grid { grid-template-columns: 1fr; } .earn__figure { order: 2; } }

/* ============================================================
   5. Porquê confiar
   ============================================================ */
.trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(16px, 2.5vw, 24px); }
.trust__card { background: var(--color-white); border: 1px solid var(--color-hairline); border-radius: var(--radius-card); padding: var(--space-32) var(--space-24); }
.trust__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--color-mint-sage); display: flex; align-items: center; justify-content: center; color: var(--color-forest-ink); margin-bottom: var(--space-16); }
.trust__icon svg { width: 26px; height: 26px; }
.trust__title { font-size: 21px; font-weight: 800; margin-bottom: var(--space-8); }
.trust__text { font-size: 15px; color: var(--color-muted); line-height: 1.6; }

/* ============================================================
   6. Opiniões
   ============================================================ */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(16px, 2.5vw, 24px); }
.review { background: var(--color-white); border: 1px solid var(--color-hairline); border-radius: var(--radius-card); padding: var(--space-32) var(--space-24); display: flex; flex-direction: column; gap: var(--space-16); }
.review__stars { color: var(--color-forest-ink); }
.review__stars svg { width: 18px; height: 18px; }
.review__quote { font-size: 17px; line-height: 1.6; color: var(--color-charcoal); flex: 1; }
.review__author { display: flex; align-items: center; gap: var(--space-12); }
.review__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--color-forest-ink); color: var(--color-white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex: 0 0 auto; }
.review__name { font-weight: 700; color: var(--color-forest-ink); font-size: 15px; }
.review__role { font-size: 13px; color: var(--color-muted); }

/* ============================================================
   7. Subscrever (formulário)
   ============================================================ */
.subscribe__panel {
  background: var(--color-forest-ink); color: var(--color-white);
  border-radius: var(--radius-panel); padding: clamp(32px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.subscribe__title { color: var(--color-white); font-size: clamp(28px, 4vw, 44px); font-weight: 900; }
.subscribe__text { margin-top: var(--space-16); color: rgba(255,255,255,.85); font-size: 17px; }
.subscribe__perks { margin-top: var(--space-20); display: flex; flex-direction: column; gap: var(--space-8); }
.subscribe__perk { display: flex; align-items: center; gap: var(--space-12); color: rgba(255,255,255,.9); font-size: 15px; }
.subscribe__perk svg { width: 18px; height: 18px; color: var(--color-bright-teal); flex: 0 0 auto; }

.form__row { margin-bottom: var(--space-16); }
.form__label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,.9); }
.form__input {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--color-charcoal);
  background: var(--color-white); border: 1px solid var(--color-fountain-teal);
  border-radius: var(--radius-full); padding: 14px 20px;
}
.form__input::placeholder { color: #9a9a92; }
.form__input:focus { outline: none; border-color: var(--color-bright-teal); box-shadow: 0 0 0 3px rgba(42,210,201,.35); }
.form__inline { display: flex; flex-wrap: nowrap; align-items: center; gap: var(--space-12); }
.form__inline .form__input { flex: 1 1 auto; width: auto; min-width: 0; }
.form__submit { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 560px) {
  .form__inline { flex-wrap: wrap; }
  .form__submit { width: 100%; }
}
.form__consent { display: flex; gap: var(--space-12); align-items: flex-start; margin: var(--space-16) 0; font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.5; }
.form__consent input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--color-bright-teal); }
.form__consent a { color: var(--color-bright-teal); }
.form__success {
  display: none; margin-top: var(--space-16); background: rgba(42,210,201,.14);
  border: 1px solid var(--color-bright-teal); border-radius: var(--radius-card);
  padding: var(--space-16) var(--space-20); color: var(--color-white); font-size: 15px;
}
.form__success.is-visible { display: flex; gap: var(--space-12); align-items: center; }
.form__success svg { width: 22px; height: 22px; color: var(--color-bright-teal); flex: 0 0 auto; }
@media (max-width: 780px) { .subscribe__panel { grid-template-columns: 1fr; } }

/* ============================================================
   8. FAQ
   ============================================================ */
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-12); }
.faq__item { background: var(--color-white); border: 1px solid var(--color-hairline); border-radius: var(--radius-card); overflow: hidden; }
.faq__trigger {
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: var(--space-20) var(--space-24); display: flex; align-items: center; justify-content: space-between; gap: var(--space-16);
  font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--color-forest-ink);
}
.faq__icon { flex: 0 0 auto; width: 26px; height: 26px; color: var(--color-forest-ink); transition: transform .25s ease; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__panel-inner { padding: 0 var(--space-24) var(--space-24); color: var(--color-charcoal); font-size: 15.5px; line-height: 1.7; }

/* ============================================================
   9. Sobre
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about__title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; }
.about__text { margin-top: var(--space-16); font-size: 17px; color: var(--color-charcoal); }
.about__text + .about__text { margin-top: var(--space-16); }
.about__figure { background: var(--color-mint-sage); border-radius: var(--radius-panel); padding: clamp(20px, 3vw, 32px); }
.about__collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-12); }
.about__chip { background: var(--color-white); border-radius: 14px; padding: 10px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.about__chip img { width: 100%; border-radius: 12px; }
.about__chip span { font-size: 11px; font-weight: 600; color: var(--color-muted); }
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; } }

/* ============================================================
   10. Estatísticas
   ============================================================ */
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: clamp(16px, 3vw, 32px); text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(44px, 6vw, 64px); color: var(--color-forest-ink); line-height: 1; }
.stat__label { margin-top: var(--space-8); font-size: 15px; color: var(--color-muted); }
.stat + .stat, .stats__grid .stat { position: relative; }

/* ============================================================
   11. Rodapé
   ============================================================ */
.footer { background: var(--color-forest-ink); color: rgba(255,255,255,.82); padding-block: clamp(48px, 6vw, 72px) var(--space-32); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.footer__brand { font-family: var(--font-display); font-weight: 900; font-size: 24px; text-transform: uppercase; color: var(--color-white); letter-spacing: .02em; }
.footer__brand span { color: var(--color-bright-teal); }
.footer__tagline { margin-top: var(--space-12); font-size: 14px; color: rgba(255,255,255,.72); max-width: 34ch; }
.footer__col-title { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-white); margin-bottom: var(--space-16); }
.footer__link { display: block; padding: 5px 0; color: rgba(255,255,255,.8); text-decoration: none; font-size: 15px; }
.footer__link:hover { color: var(--color-bright-teal); }
.footer__contact { margin-top: var(--space-8); }
.footer__contact a { color: var(--color-bright-teal); text-decoration: none; }
.footer__bottom { margin-top: clamp(32px, 5vw, 48px); padding-top: var(--space-24); border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: var(--space-12); justify-content: space-between; align-items: center; font-size: 13.5px; color: rgba(255,255,255,.66); }
@media (max-width: 720px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand-col { grid-column: 1 / -1; } }

/* ============================================================
   Botão "voltar ao topo" + banner de cookies
   ============================================================ */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 55; width: 48px; height: 48px;
  border-radius: 50%; border: 0; background: var(--color-forest-ink); color: var(--color-white);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--glow-cta);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s, transform .25s, visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70; max-width: 560px; margin-inline: auto;
  background: var(--color-white); border: 1px solid var(--color-hairline); border-radius: var(--radius-card);
  padding: var(--space-20) var(--space-24); box-shadow: 0 20px 40px -18px rgba(20,67,61,.4);
  display: none;
}
.cookie.is-visible { display: block; }
.cookie__text { font-size: 14px; color: var(--color-charcoal); line-height: 1.55; }
.cookie__text a { color: var(--color-forest-ink); }
.cookie__actions { margin-top: var(--space-16); display: flex; gap: var(--space-12); flex-wrap: wrap; }
.cookie__actions .btn { padding: 11px 22px; font-size: 15px; }

/* ============================================================
   Páginas legais
   ============================================================ */
.legal { padding-block: clamp(40px, 6vw, 72px); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--color-forest-ink); text-decoration: none; margin-bottom: var(--space-24); }
.legal__back svg { width: 18px; height: 18px; }
.legal__back:hover { color: var(--color-wine); }
.legal h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; }
.legal__updated { margin-top: var(--space-12); color: var(--color-muted); font-size: 14px; }
.legal__body { max-width: 820px; margin-top: var(--space-32); }
.legal__body h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-top: var(--space-40); margin-bottom: var(--space-12); }
.legal__body h3 { font-size: 19px; font-weight: 800; margin-top: var(--space-24); margin-bottom: var(--space-8); }
.legal__body p { margin-bottom: var(--space-16); color: var(--color-charcoal); }
.legal__body ul { margin: 0 0 var(--space-16); padding-left: var(--space-24); list-style: disc; }
.legal__body li { margin-bottom: var(--space-8); color: var(--color-charcoal); }
.legal__body a { color: var(--color-forest-ink); }
.legal__body table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-24); font-size: 14.5px; }
.legal__body th, .legal__body td { text-align: left; padding: 10px 12px; border: 1px solid var(--color-hairline); vertical-align: top; }
.legal__body th { background: var(--color-cream-deep); color: var(--color-forest-ink); }

/* Utilidades */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.no-scroll { overflow: hidden; }
