/* ============================================================
   166bet — full stylesheet (design system + sections)
   Ported 1:1 from the Claude Design handoff (styles.css + sections.css),
   with image-slot wells replaced by .ph placeholders and three added
   SEO sections (App / FAQ / Sobre) + a mobile nav drawer.

   Token-driven: re-skin via the :root custom properties below.
   On the homepage this file is INLINED in <head> (no render-blocking
   request, zero CLS). On inner pages it is enqueued + cached.
   @font-face lives in fonts.css (inlined separately in <head>).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Base — near-black with a faint cool-green tint */
  --bg:        #090C0A;
  --bg-elev:   #0F1512;
  --surface:   #141C18;
  --surface-2: #1B2620;
  --surface-3: #233029;
  --line:        rgba(255,255,255,.07);
  --line-strong: rgba(255,255,255,.14);

  /* Text */
  --text:       #F1F6F2;
  --text-dim:   #93A39A;
  --text-faint: #5E6E65;

  /* Accents */
  --green:       #00E07A;   /* primary — CTA + odds */
  --green-700:   #00B765;   /* pressed */
  --green-soft:  rgba(0,224,122,.14);
  --green-glow:  rgba(0,224,122,.45);
  --yellow:      #FFD60A;   /* Seleção / bônus / Aviator */
  --yellow-deep: #E0B400;
  --yellow-soft: rgba(255,214,10,.14);
  --red:         #FF5A5A;   /* live / odds-down */
  --red-soft:    rgba(255,90,90,.14);

  /* Radii */
  --r-xs: 6px;  --r-sm: 9px;  --r: 13px;  --r-lg: 18px;  --r-xl: 26px;  --pill: 999px;

  /* Shadow */
  --sh-1: 0 1px 0 rgba(255,255,255,.04) inset, 0 8px 24px rgba(0,0,0,.35);
  --sh-2: 0 18px 50px rgba(0,0,0,.55);
  --sh-cta: 0 8px 22px rgba(0,224,122,.32);

  /* Layout */
  --pad: 16px;
  --maxw: 1180px;
  --header-h: 56px;

  /* Type */
  --font-display: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  font-size: 15px;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: 30px; }
.section--tight { padding-block: 18px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--green); color: #042013; padding: 10px 16px; z-index: 100; font-weight: 700; }
.skip-link:focus { left: 8px; top: 8px; border-radius: var(--r-xs); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(24px, 6vw, 30px);
  line-height: .95; text-transform: uppercase; letter-spacing: .01em;
}
.sec-head h2 b { color: var(--green); font-weight: 800; }
.sec-head .more {
  font-size: 12.5px; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
}
.sec-head .more:hover { color: var(--green); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--green);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 16px; letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 20px; border-radius: var(--pill);
  transition: transform .12s ease, filter .12s ease, background .12s ease;
  white-space: nowrap; user-select: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--green); color: #042013; box-shadow: var(--sh-cta); }
.btn--primary:hover { filter: brightness(1.06); }
.btn--yellow { background: var(--yellow); color: #2A2200; box-shadow: 0 8px 22px rgba(255,214,10,.28); }
.btn--yellow:hover { filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 15px; font-size: 13.5px; }
.btn--lg { padding: 16px 26px; font-size: 18px; }

/* ---------- Generic card ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

/* ---------- Live pill ---------- */
.live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--red-soft); border: 1px solid rgba(255,90,90,.4);
  padding: 3px 9px 3px 7px; border-radius: var(--pill);
}
.live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,90,90,.7);
  animation: livepulse 1.6s infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,90,90,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(255,90,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,90,0); }
}

/* ---------- Odds button ---------- */
.odds {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 7px 4px 6px;
  min-width: 0; transition: border-color .12s, background .12s;
}
.odds:hover { border-color: var(--green); }
.odds .k { font-size: 11px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: .04em; }
.odds .v {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--green); font-variant-numeric: tabular-nums; line-height: 1;
}
.odds.is-up   .v { color: var(--green); }
.odds.is-down .v { color: var(--red); }
.odds--row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

.boost {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--yellow); background: var(--yellow-soft);
  border: 1px solid rgba(255,214,10,.35); padding: 2px 7px; border-radius: var(--pill);
}

/* ---------- Placeholder image treatment ----------
   Used where real game/casino art will be dropped in later. Swap the
   <span class="...__img ph"> for an <img> with width/height + loading="lazy". */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, var(--surface-3), var(--surface-2));
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.ph .ph-tag {
  position: absolute; left: 8px; bottom: 8px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 9.5px; letter-spacing: .04em; color: var(--text-dim);
  background: rgba(0,0,0,.4); padding: 2px 6px; border-radius: 5px;
}

/* scroll-row */
.hrow {
  display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 4px; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad);
  -ms-overflow-style: none; scrollbar-width: none;
}
.hrow::-webkit-scrollbar { display: none; }
.hrow > * { scroll-snap-align: start; flex: 0 0 auto; }

/* utility */
.divider { height: 1px; background: var(--line); border: 0; }
.tnum { font-variant-numeric: tabular-nums; }

/* ============================================================
   Section / component layout
   ============================================================ */

/* ---------- Promo strip ---------- */
.promo-strip {
  background: linear-gradient(90deg, #0c1410, #0a100d);
  border-bottom: 1px solid var(--line);
  font-size: 11.5px; color: var(--text-dim);
  overflow: hidden;
}
.promo-strip__in { display: flex; align-items: center; gap: 12px; height: 30px; white-space: nowrap; overflow-x: auto; scrollbar-width: none; }
.promo-strip__in::-webkit-scrollbar { display: none; }
.promo-strip__item { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.promo-strip__sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-faint); flex: 0 0 auto; }
.g-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green-glow); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9,12,10,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 12px; height: var(--header-h); position: relative; }
.hdr__menu { display: inline-flex; color: var(--text); padding: 4px; margin-left: -4px; }
.hdr__nav { display: none; }
/* WP menus render <ul><li>; display:contents lets the <a> sit in the flex row */
.hdr__nav ul, .hdr__nav li { display: contents; }
.logo { display: inline-flex; align-items: baseline; font-family: var(--font-display); font-weight: 800; font-size: 25px; letter-spacing: -.01em; line-height: 1; }
.logo__mark { color: var(--text); }
.logo__six { color: var(--green); }
.logo__word { color: var(--text); opacity: .92; }
.logo--lg { font-size: 30px; }
.hdr__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.hdr__login { font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--text); }
.hdr__login:hover { color: var(--green); }

/* category bar */
.catbar { border-top: 1px solid var(--line); background: rgba(9,12,10,.7); }
.catbar__row { padding-block: 9px; }
.cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .04em; color: var(--text-dim);
  padding: 5px 12px; border-radius: var(--pill); border: 1px solid transparent;
  background: var(--surface); white-space: nowrap;
}
.cat:hover { color: var(--text); }
.cat.is-active { color: var(--green); border-color: rgba(0,224,122,.45); background: var(--green-soft); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: livepulse 1.6s infinite; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 8px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 130%; height: 460px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(0,224,122,.20), transparent 70%);
}
.hero__pitch {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}
.hero__in { position: relative; z-index: 2; padding-top: 18px; padding-bottom: 8px; }
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 11.5vw, 58px); line-height: .98;
  text-transform: uppercase; letter-spacing: -.01em;
  margin-top: 8px; max-width: 13ch;
}
.hero__title em { color: var(--green); font-style: normal; }
.hero__sub { color: var(--text-dim); font-size: 15px; max-width: 34ch; margin-top: 20px; }
.hero__sub b { color: var(--text); }

.hero__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.hero__legal { font-size: 11px; color: var(--text-faint); margin-top: 10px; letter-spacing: .04em; }

/* featured match */
.match-feat { margin-top: 20px; padding: 14px; box-shadow: var(--sh-1); }
.match-feat__top { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--text-dim); }
.match-feat__league { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.match-feat__clock { margin-left: auto; font-family: var(--font-display); font-weight: 700; color: var(--text); letter-spacing: .03em; }
.match-feat__teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 12px; margin: 16px 2px 18px; }
.team { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 0; }
.team__name { font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: .01em; text-align: center; line-height: 1; }
.team__crest { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--text-dim); flex: 0 0 auto; }
.match-feat__score { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: .08em; color: var(--text-faint); padding-top: 14px; }
.match-feat__score span { color: var(--text-faint); }
.match-feat__tag { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); background: var(--green-soft); border: 1px solid rgba(0,224,122,.35); padding: 3px 9px; border-radius: var(--pill); }
.match-feat__odds { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.match-feat__odds .odds { padding: 9px 4px; }
.match-feat__more { display: inline-flex; align-items: center; gap: 3px; margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--text-dim); }
.match-feat__more:hover { color: var(--green); }

/* ---------- Bonus banner ---------- */
.bonus { position: relative; overflow: hidden; padding: 18px; background: linear-gradient(135deg, #15201a, #101713); border-color: rgba(255,214,10,.22); }
.bonus__burst { position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; background: radial-gradient(circle, var(--yellow-soft), transparent 65%); }
.bonus__body { position: relative; }
.bonus__kicker { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); }
.bonus__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 8vw, 38px); line-height: 1; text-transform: uppercase; margin-top: 4px; }
.bonus__big b { color: var(--yellow); }
.bonus__sub { color: var(--text-dim); font-size: 14px; margin-top: 6px; }
.bonus__sub b { color: var(--text); }
.bonus .btn { margin-top: 14px; }
.bonus__terms { font-size: 10.5px; color: var(--text-faint); margin-top: 8px; text-align: center; }

/* ---------- Tabs + matchlist ---------- */
.tabs { padding-bottom: 2px; margin-bottom: 12px; }
.tab {
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  text-transform: uppercase; letter-spacing: .03em; color: var(--text-dim);
  padding: 8px 14px; border-radius: var(--pill); background: var(--surface);
  border: 1px solid var(--line); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
}
.tab.is-active { color: #042013; background: var(--green); border-color: var(--green); }
.tab.is-active .live-dot { background: #042013; }

.matchlist { display: flex; flex-direction: column; gap: 8px; }
.mrow { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; }
.mrow__info { min-width: 0; }
.mrow__meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-dim); margin-bottom: 7px; flex-wrap: nowrap; }
.mrow__meta .live { padding: 2px 7px; font-size: 10.5px; }
.mrow__when { font-family: var(--font-display); font-weight: 700; color: var(--text); letter-spacing: .03em; white-space: nowrap; }
.mrow__league { color: var(--text-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mrow__teams { display: flex; flex-direction: column; gap: 3px; }
.mrow__team { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: .01em; }
.mrow__team .nm { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mrow__team .sc { flex: 0 0 auto; margin-left: auto; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; padding-left: 8px; }
.mrow__odds { display: grid; grid-template-columns: repeat(3, 52px); gap: 6px; }
.mrow__markets { font-size: 10.5px; color: var(--text-faint); margin-top: 6px; }

/* ---------- Aviator ---------- */
.aviator {
  position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: 12px; overflow: hidden; padding: 20px 18px; border-radius: var(--r-lg);
  background: radial-gradient(120% 140% at 0% 100%, #2a0d10, #140a0c 55%, #0d0a0b);
  border: 1px solid rgba(255,90,90,.25);
}
.aviator__trail { position: absolute; inset: 0; opacity: .9; }
.aviator__trail svg { width: 100%; height: 100%; }
.aviator__trail path { fill: none; stroke: var(--red); stroke-width: 2.5; stroke-dasharray: 6 7; filter: drop-shadow(0 0 6px rgba(255,90,90,.6)); }
.aviator__plane { fill: #fff; filter: drop-shadow(0 0 6px rgba(255,255,255,.8)); }
.aviator__body { position: relative; z-index: 1; }
.aviator__tag { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); }
.aviator__title { font-family: var(--font-display); font-weight: 800; font-size: 34px; line-height: .9; text-transform: uppercase; margin-top: 2px; }
.aviator__sub { font-size: 13px; color: var(--text-dim); margin-top: 6px; max-width: 22ch; }
.aviator__multi { position: relative; z-index: 1; text-align: right; }
.aviator__x { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--yellow); line-height: 1; text-shadow: 0 0 18px rgba(255,214,10,.4); }
.aviator__cta { display: block; margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--green); }

/* ---------- Casino ---------- */
.casino-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; }
.casino-tile { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1 / 1; border: 1px solid var(--line); display: block; }
.casino-tile--lg { aspect-ratio: 1.4 / 1; }
.casino-tile__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.casino-tile__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.82)); }
.casino-tile__cap { position: absolute; left: 12px; right: 12px; bottom: 11px; z-index: 1; }
.casino-tile__cap h3, .casino-tile__cap h4 { font-family: var(--font-display); font-weight: 800; font-size: 19px; text-transform: uppercase; line-height: 1; margin-top: 6px; }
.casino-tile__cap p { font-size: 11.5px; color: var(--text-dim); margin-top: 3px; }
.badge { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-display); font-weight: 800; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--pill); }
.badge--live { background: var(--red-soft); color: #fff; border: 1px solid rgba(255,90,90,.4); }
.badge--live .live-dot { animation: none; }
.badge--hot { background: var(--yellow-soft); color: var(--yellow); border: 1px solid rgba(255,214,10,.35); }

.gamerow { margin-top: 12px; }
.game { width: 116px; display: flex; flex-direction: column; gap: 7px; }
.game__img { width: 116px; height: 116px; border-radius: 14px; }
.game span { font-size: 12px; font-weight: 600; color: var(--text-dim); }

/* ---------- Duo (virtuais / esports) ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.duo__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px; display: flex; flex-direction: column; min-height: 150px; }
.duo__card:hover { border-color: var(--line-strong); }
.duo__tag { font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.duo__card h3, .duo__card h4 { font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; line-height: .95; margin-top: 6px; }
.duo__card p { font-size: 12.5px; color: var(--text-dim); margin-top: 7px; flex: 1; }
.duo__go { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; color: var(--text); }
.duo__card:hover .duo__go { color: var(--green); }

/* ---------- Pix / payments ---------- */
.pay { padding: 16px; }
.pay__pix { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.pix-mark { position: relative; width: 38px; height: 38px; flex: 0 0 auto; }
.pix-mark span { position: absolute; width: 15px; height: 15px; background: var(--green); border-radius: 3px; transform: rotate(45deg); box-shadow: 0 0 12px var(--green-glow); }
.pix-mark span:nth-child(1){ top: 0; left: 11px; } .pix-mark span:nth-child(2){ top: 11px; left: 0; }
.pix-mark span:nth-child(3){ top: 11px; right: 0; } .pix-mark span:nth-child(4){ bottom: 0; left: 11px; }
.pay__pix-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1; text-transform: uppercase; }
.pay__pix-sub { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.pay__pix-badge { margin-left: auto; font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--green); background: var(--green-soft); border: 1px solid rgba(0,224,122,.35); padding: 4px 9px; border-radius: var(--pill); white-space: nowrap; }
.pay__methods { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 0; }
.pm { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .04em; color: var(--text-dim); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-xs); padding: 7px 14px; }
.pm--sm { font-size: 11.5px; padding: 5px 11px; }
.pay__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.pay__min { font-size: 12.5px; color: var(--text-dim); }
.pay__min b { color: var(--text); }

/* ---------- Trust strip ---------- */
.trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.trust__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 10px; text-align: center; }
.trust__item svg { width: 24px; height: 24px; color: var(--green); margin: 0 auto 8px; }
.trust__item p { display: flex; flex-direction: column; }
.trust__item b { font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .02em; }
.trust__item span { font-size: 11px; color: var(--text-dim); }

/* ---------- App download (added for SEO #app) ---------- */
.appcard { display: grid; gap: 16px; padding: 18px; position: relative; overflow: hidden; }
.appcard__burst { position: absolute; left: -50px; bottom: -60px; width: 200px; height: 200px; background: radial-gradient(circle, var(--green-soft), transparent 65%); pointer-events: none; }
.appcard__body { position: relative; z-index: 1; }
.appcard__kicker { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.appcard__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px,7vw,32px); line-height: 1; text-transform: uppercase; margin-top: 4px; }
.appcard__sub { color: var(--text-dim); font-size: 14px; margin-top: 8px; max-width: 40ch; }
.appcard__list { display: grid; gap: 9px; margin-top: 14px; }
.appcard__list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-dim); }
.appcard__list svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; }
.appcard__actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; }
.appcard__note { font-size: 11px; color: var(--text-faint); }

/* ---------- FAQ accordion (added for SEO #faq) ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 16px; font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: .01em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; width: 9px; height: 9px; border-right: 2px solid var(--text-dim); border-bottom: 2px solid var(--text-dim); transform: rotate(45deg); transition: transform .15s ease; flex: 0 0 auto; margin-bottom: 3px; }
.faq__item[open] summary::after { transform: rotate(-135deg); margin-bottom: -3px; }
.faq__item[open] summary { color: var(--green); }
.faq__a { padding: 0 16px 16px; color: var(--text-dim); font-size: 14px; line-height: 1.65; }
.faq__a a { color: var(--green); }

/* ---------- Sobre (added for SEO #sobre) ---------- */
.sobre { padding: 18px; }
.sobre p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.sobre p + p { margin-top: 12px; }
.sobre b { color: var(--text); }
.sobre__age { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--text-dim); }
.sobre__age .age { flex: 0 0 auto; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #fff; background: var(--red); border-radius: 7px; padding: 5px 7px; line-height: 1; }

/* ---------- WhatsApp CTA ---------- */
.wa-cta { display: flex; align-items: center; gap: 13px; padding: 14px 16px; border-radius: var(--r-lg); background: linear-gradient(135deg, #11231a, #0e1713); border: 1px solid rgba(0,224,122,.25); }
.wa-cta__ic { width: 42px; height: 42px; border-radius: 50%; background: var(--green-soft); border: 1px solid rgba(0,224,122,.4); display: grid; place-items: center; flex: 0 0 auto; }
.wa-cta__ic svg { width: 22px; height: 22px; color: var(--green); }
.wa-cta__txt { display: flex; flex-direction: column; min-width: 0; }
.wa-cta__txt b { font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: .02em; }
.wa-cta__txt span { font-size: 12.5px; color: var(--text-dim); }
.wa-cta__go { margin-left: auto; font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; color: var(--green); white-space: nowrap; }

/* ---------- Footer ---------- */
.ft { background: var(--bg-elev); border-top: 1px solid var(--line); margin-top: 12px; padding-block: 30px 120px; }
.ft__tag { color: var(--text-dim); font-size: 13px; margin-top: 10px; max-width: 40ch; }
.ft__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 16px; margin-top: 26px; }
.ft__col h2 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.ft__col a { display: block; font-size: 13.5px; color: var(--text-dim); padding: 4px 0; }
.ft__col a:hover { color: var(--green); }
.ft__col ul, .ft__col li { display: block; }
.ft__pay { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.ft hr { margin: 22px 0; }
.ft__resp { display: flex; gap: 12px; align-items: flex-start; }
.age { flex: 0 0 auto; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; background: var(--red); border-radius: 7px; padding: 6px 8px; line-height: 1; }
.ft__resp p { font-size: 12px; color: var(--text-dim); line-height: 1.6; }
.ft__resp a { color: var(--green); }
.ft__license { font-size: 11px; color: var(--text-faint); margin-top: 18px; line-height: 1.6; }
.ft__copy { font-size: 11.5px; color: var(--text-faint); margin-top: 12px; }

/* ---------- Floating WhatsApp ---------- */
.wa-fab {
  position: fixed; right: 16px; bottom: 86px; z-index: 60;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: #042013;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,224,122,.4);
}
.wa-fab svg { width: 26px; height: 26px; }
.wa-fab:active { transform: scale(.94); }

/* ---------- Sticky bottom bar (mobile) ---------- */
.bottombar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(9,12,10,.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.bottombar .btn { flex: 1; }

/* ---------- Generic article/page content (single.php / page.php) ---------- */
.entry { padding-block: 24px; }
.breadcrumbs { font-size: 12px; color: var(--text-faint); margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs a { color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--green); }
.entry__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,7vw,44px); line-height: 1; text-transform: uppercase; }
.entry__meta { font-size: 12.5px; color: var(--text-dim); margin-top: 10px; }
.entry__thumb { margin: 18px 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.entry__content { margin-top: 18px; max-width: 70ch; }
.entry__content > * + * { margin-top: 1em; }
.entry__content h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 26px; margin-top: 1.4em; }
.entry__content h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; margin-top: 1.2em; }
.entry__content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.entry__content img { border-radius: var(--r); }
.entry__content blockquote { border-left: 3px solid var(--green); padding-left: 14px; color: var(--text-dim); }
.entry__content ul, .entry__content ol { padding-left: 1.3em; }
.entry__content ul { list-style: disc; }
.entry__content ol { list-style: decimal; }
.entry__content code { background: var(--surface-2); border: 1px solid var(--line); border-radius: 5px; padding: 1px 5px; font-size: .9em; }

.cardlist { display: grid; gap: 12px; }
.cardlist__item { padding: 16px; }
.cardlist__item h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; }
.cardlist__item h2 a:hover { color: var(--green); }
.cardlist__item .excerpt { color: var(--text-dim); font-size: 14px; margin-top: 8px; }
.cardlist__item .meta { color: var(--text-faint); font-size: 12px; margin-top: 8px; }

.pagenav { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.pagenav a, .pagenav span { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 13px; padding: 8px 13px; border-radius: var(--pill); border: 1px solid var(--line); color: var(--text-dim); }
.pagenav a:hover { border-color: var(--green); color: var(--green); }
.pagenav .current { background: var(--green); color: #042013; border-color: var(--green); }

.notice { padding: 30px 18px; text-align: center; color: var(--text-dim); }

/* ============================================================
   DESKTOP / RESPONSIVE
   ============================================================ */
@media (min-width: 720px) {
  :root { --pad: 28px; }
  .hero__title { max-width: 14ch; }
  .casino-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .ft__cols { grid-template-columns: repeat(4,1fr); }
  .appcard { grid-template-columns: 1.5fr auto; align-items: center; }
}

@media (min-width: 920px) {
  .bottombar { display: none; }
  .wa-fab { bottom: 24px; }
  .hdr__menu { display: none; }
  .hdr__nav { display: flex; gap: 22px; margin-left: 24px; }
  .hdr__nav a { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .03em; color: var(--text-dim); }
  .hdr__nav a:hover, .hdr__nav .current-menu-item > a { color: var(--green); }
  .hdr__login { font-size: 15px; }

  .hero__in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center; padding-block: 56px; }
  .hero__title { font-size: clamp(56px, 6vw, 82px); grid-column: 1; }
  .eyebrow, .hero__sub, .hero__actions, .hero__legal { grid-column: 1; }
  .match-feat { grid-column: 2; grid-row: 1 / span 5; margin-top: 0; align-self: center; padding: 20px; }
  .hero__actions { flex-direction: row; max-width: 520px; }
  .hero__actions .btn { flex: 1; }

  .section { padding-block: 44px; }
  .matchlist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .duo { grid-template-columns: 1fr 1fr; gap: 14px; }
  .trust { gap: 14px; }
  .trust__item { display: flex; align-items: center; gap: 14px; text-align: left; padding: 18px 22px; }
  .trust__item svg { margin: 0; width: 30px; height: 30px; }
  .pay { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 22px; align-items: center; }
  .pay__pix { border-bottom: none; padding-bottom: 0; }
  .pay__methods { padding: 0; }
  .pay__foot { border-top: none; padding-top: 0; flex-direction: column; align-items: flex-end; }
}

@media (min-width: 1100px) {
  .matchlist { grid-template-columns: repeat(3,1fr); }
}

/* ---------- Mobile nav drawer (added) ---------- */
@media (max-width: 919px) {
  .hdr__nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: var(--header-h);
    background: var(--bg-elev); border-bottom: 1px solid var(--line);
    padding: 6px var(--pad) 12px; z-index: 49;
    box-shadow: var(--sh-2);
  }
  .hdr__nav.is-open a {
    font-family: var(--font-display); font-weight: 700; font-size: 16px;
    text-transform: uppercase; letter-spacing: .03em; color: var(--text-dim);
    padding: 13px 2px; border-bottom: 1px solid var(--line);
  }
  .hdr__nav.is-open a:hover { color: var(--green); }
}

@media (prefers-reduced-motion: reduce) {
  .live .dot, .live-dot { animation: none; }
  * { scroll-behavior: auto; }
}
