/* ============================================================
   Plataforma Regular — Main Stylesheet
   Editorial magazine: parchment + muted brown accent + near-black
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #faf8f5;
  --surface:     #ffffff;
  --ink:         #1c1c1c;
  --ink-mid:     #3a3a3a;
  --ink-muted:   #8a8a8a;
  --accent:      #7a6a52;
  --rule:        #ddd9d4;
  --tint:        #f2f0ec;
  --dark:        #1a1918;
  --red:         #b01a1a;
  --radius:      3px;
  --transition:  .18s ease;
  --font-serif:  'Georgia', 'Times New Roman', serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --read-width:  680px;
  --full-width:  1120px;

  /* Utilizado por estilos inline en páginas de marca */
  --gold:        var(--accent);
  --text:        var(--ink-mid);
  --white:       #ffffff;
  --text-muted:  var(--ink-muted);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink-mid);
  line-height: 1.82;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
}

a { color: var(--ink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
strong { color: var(--ink); }
code {
  font-family: 'Courier New', monospace;
  background: var(--tint);
  padding: 1px 6px;
  border-radius: 2px;
  font-size: .88em;
  color: var(--ink-mid);
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h3 { font-size: 1.08rem; }

/* ---------- Layout containers ---------- */
.read {
  max-width: var(--read-width);
  margin: 0 auto;
  padding: 0 28px;
}

.wrap-full {
  max-width: var(--full-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* Legacy .wrap alias for brand/policy pages */
.wrap {
  max-width: var(--full-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font-sans);
  letter-spacing: .01em;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-mid);
  border-color: var(--ink-mid);
  color: var(--bg);
}

.btn-secondary {
  background: transparent;
  color: var(--ink-mid);
  border-color: var(--rule);
}
.btn-secondary:hover {
  border-color: var(--ink-muted);
  color: var(--ink);
}

.btn-sm  { padding: 7px 14px; font-size: .82rem; }
.btn-lg  { padding: 13px 28px; font-size: .95rem; }

/* ---------- Masthead ---------- */
.masthead {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 28px 0;
}

.masthead-inner {
  max-width: var(--full-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
}

.masthead-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity var(--transition);
}
.masthead-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.masthead-logo:hover { opacity: .75; }

.masthead-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.masthead-nav > a {
  font-size: .86rem;
  color: var(--ink-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.masthead-nav > a:hover { color: var(--ink); }

.masthead-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
  max-width: var(--full-width);
  margin: 0 auto;
}

/* ---------- Hamburger ---------- */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); margin: 5px 0; transition: var(--transition);
}

/* ---------- Overline ---------- */
.overline {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

/* ---------- Section rule ---------- */
.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ---------- Article Opener ---------- */
.article-opener {
  padding: 72px 0 0;
}

.article-opener h1 {
  margin-top: 8px;
  margin-bottom: 22px;
}

.article-deck {
  font-size: 1.12rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 580px;
}

.article-meta {
  font-size: .75rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
  letter-spacing: .03em;
}

.article-jumps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.article-jumps a {
  font-size: .82rem;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.article-jumps a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- Article sections (shared) ---------- */
.article-section {
  padding: 64px 0;
}

.section-no-top-pad {
  padding-top: 0;
}

.article-section h2 {
  margin-top: 10px;
  margin-bottom: 24px;
}

/* Direct child paragraphs in reading column */
.read > p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  color: var(--ink-mid);
  line-height: 1.82;
}
.read > p:last-child { margin-bottom: 0; }

/* ---------- Fact box ---------- */
.fact-box {
  background: var(--tint);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  margin-top: 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.fact-box p {
  font-size: .92rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Inline operator blocks ---------- */
.op-inline {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 28px;
}
/* Avoid double bottom/top border when followed by context then another block */
.op-context + .op-inline {
  border-top-color: transparent;
}

.op-inline-logo {
  display: flex;
  align-items: center;
}
.op-inline-logo img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.op-inline-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.op-inline-name {
  font-size: .94rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
}

.op-inline-attrs {
  font-size: .76rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.op-inline-bonus {
  font-size: .82rem;
  color: var(--ink-mid);
  line-height: 1.45;
}
.op-inline-bonus strong { color: var(--ink); }

.op-inline-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
  flex-shrink: 0;
}

.op-link-primary {
  font-size: .83rem;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  white-space: nowrap;
  line-height: 1.3;
}
.op-link-primary:hover { color: var(--accent); border-color: var(--accent); }

.op-link-secondary {
  font-size: .78rem;
  color: var(--ink-muted);
  white-space: nowrap;
}
.op-link-secondary:hover { color: var(--ink-mid); }

.op-context {
  font-size: .88rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 12px;
  line-height: 1.65;
}

/* ---------- Section: Verify steps (full-width tinted) ---------- */
.section-verify {
  background: var(--tint);
  padding: 64px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-verify .read { margin-bottom: 40px; }
.section-verify h2 { margin-top: 10px; margin-bottom: 0; }

.steps-wrap {
  max-width: var(--full-width);
  margin: 0 auto;
  padding: 0 28px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-title {
  display: block;
  font-size: .97rem;
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-sans);
  margin-bottom: 8px;
}

.step p {
  font-size: .88rem;
  color: var(--ink-muted);
  line-height: 1.68;
}

/* ---------- Glossary box ---------- */
.gloss-box {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-top: 28px;
  overflow: hidden;
}

.gloss-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
  align-items: start;
}
.gloss-row:last-child { border-bottom: none; }

.gloss-row dt {
  font-size: .87rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-sans);
}

.gloss-row dd {
  font-size: .87rem;
  color: var(--ink-muted);
  line-height: 1.62;
}

/* ---------- Payment inline list ---------- */
.payments-inline {
  font-size: .9rem;
  color: var(--ink-muted);
  font-style: italic;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  margin: 0 0 18px;
  line-height: 1.65;
  display: block;
}

/* ---------- FAQ (editorial numbered, all visible) ---------- */
.section-faq-ed {
  border-top: 1px solid var(--rule);
}

.section-faq-ed h2 {
  margin-bottom: 36px;
}

.faq-ed-list {
  display: flex;
  flex-direction: column;
}

.faq-ed-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.faq-ed-item:first-child { border-top: 1px solid var(--rule); }

.faq-ed-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
  padding-top: 2px;
}

.faq-ed-body { display: flex; flex-direction: column; gap: 8px; }

.faq-ed-q {
  font-weight: 700;
  color: var(--ink);
  font-size: .97rem;
  font-family: var(--font-serif);
  line-height: 1.35;
}

.faq-ed-a {
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ---------- Disclaimer ---------- */
.disclaimer-ed {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}

.disclaimer-ed p {
  font-size: .77rem;
  color: var(--ink-muted);
  line-height: 1.72;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.badge-18-ed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-weight: 800;
  font-size: .62rem;
  flex-shrink: 0;
  font-family: var(--font-sans);
  margin-top: 1px;
}

/* ---------- Footer ---------- */
.site-footer-ed {
  background: var(--dark);
  padding: 52px 0 32px;
}

.footer-ed-brand {
  text-align: center;
  margin-bottom: 28px;
}

.footer-ed-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  opacity: .82;
  transition: opacity var(--transition);
}
.footer-ed-logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-ed-logo:hover { opacity: 1; }

.footer-ed-tagline {
  font-size: .79rem;
  color: rgba(255,255,255,.28);
  font-style: italic;
}

.footer-ed-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-ed-nav a {
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  transition: color var(--transition);
}
.footer-ed-nav a:hover { color: rgba(255,255,255,.78); }
.footer-ed-nav span { color: rgba(255,255,255,.14); }

.footer-ed-responsible {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 24px;
}

.footer-ed-resp-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.24);
  text-align: center;
  margin-bottom: 18px;
}

.responsible-logos-ed {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.responsible-logos-ed a {
  opacity: .42;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}
.responsible-logos-ed a:hover { opacity: .88; }
.responsible-logos-ed img { object-fit: contain; }

.rlogo-44 { height: 44px; }
.rlogo-36 { height: 36px; }
.rlogo-30 { height: 30px; }
.rlogo-26 { height: 26px; }

.footer-ed-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-ed-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-ed-legal a {
  font-size: .75rem;
  color: rgba(255,255,255,.28);
  transition: color var(--transition);
}
.footer-ed-legal a:hover { color: rgba(255,255,255,.7); }

.footer-ed-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.2);
}

/* ---------- Age Gate ---------- */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,25,24,.96);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate-overlay.hidden { display: none; }

.age-gate {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 52px 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.age-gate-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--ink-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 auto 22px;
  font-family: var(--font-sans);
}

.age-gate h2 { font-size: 1.35rem; margin-bottom: 12px; }
.age-gate > p {
  color: var(--ink-muted);
  font-size: .88rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.age-gate-btns { display: flex; gap: 10px; justify-content: center; }
.age-gate-btns .btn { min-width: 120px; justify-content: center; }

.age-gate-disclaimer {
  margin-top: 18px;
  font-size: .7rem;
  color: var(--ink-muted);
}
.age-gate-disclaimer a { color: var(--ink-muted); text-decoration: underline; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
  z-index: 8000;
  transform: translateY(0);
  transition: transform .3s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text { font-size: .81rem; color: rgba(255,255,255,.52); flex: 1; min-width: 200px; }
.cookie-text a { color: rgba(255,255,255,.72); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-banner .btn-primary {
  background: rgba(255,255,255,.9);
  color: var(--dark);
  border-color: transparent;
}
.cookie-banner .btn-primary:hover {
  background: #fff;
  color: var(--dark);
}
.cookie-banner .btn-secondary {
  color: rgba(255,255,255,.5);
  border-color: rgba(255,255,255,.18);
}
.cookie-banner .btn-secondary:hover {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.38);
}

/* ---------- Mobile nav open state ---------- */
.masthead-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 20px 28px 24px;
  z-index: 850;
  gap: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}
.masthead-nav.open > a {
  font-size: .95rem;
  color: var(--ink-mid);
}

.site-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 20px 28px 24px;
  z-index: 850;
  gap: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}
.site-nav.open > a {
  font-size: .95rem;
}

/* ============================================================
   Legacy layout — páginas de marca, legales y políticas
   ============================================================ */

.container {
  max-width: var(--full-width);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.gold { color: var(--accent); }

.text-muted {
  font-size: .88rem;
  color: var(--ink-muted);
}

.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo span { color: var(--accent); }

.site-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a:not(.btn-header) {
  font-size: .86rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.site-nav > a:not(.btn-header):hover { color: var(--ink); }

.btn-header {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .82rem;
}

.btn-header:hover {
  opacity: .85;
  color: var(--bg) !important;
}

.btn-gold {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-gold:hover {
  opacity: .88;
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--ink-mid);
  border: 1px solid var(--rule);
}

.btn-outline:hover {
  border-color: var(--ink-muted);
  color: var(--ink);
}

.tag {
  font-size: .72rem;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 600;
  border: 1px solid var(--rule);
  color: var(--ink-muted);
  background: var(--surface);
  display: inline-block;
}

.tag-blue {
  border-color: rgba(122,106,82,.28);
  color: var(--ink-mid);
  background: var(--tint);
}

.tag-green {
  border-color: rgba(45,106,79,.28);
  color: #2d5551;
  background: rgba(45,106,79,.06);
}

.tag-gold {
  border-color: rgba(122,106,82,.35);
  color: var(--accent);
  background: rgba(122,106,82,.06);
}

.disclaimer-bar {
  background: var(--tint);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
}

.disclaimer-bar .container p {
  font-size: .78rem;
  color: var(--ink-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.65;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-weight: 800;
  font-size: .65rem;
  flex-shrink: 0;
  font-family: var(--font-sans);
}

.site-footer {
  background: var(--dark);
  padding: 48px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand .site-logo {
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
}

.footer-brand .site-logo span { color: var(--accent); }

.footer-brand .site-logo img {
  filter: brightness(0) invert(1);
  opacity: .88;
}

.footer-brand .site-logo:hover img { opacity: 1; }

.footer-brand p {
  font-size: .82rem;
  color: rgba(255,255,255,.34);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.42);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: rgba(255,255,255,.88); }

.footer-responsible {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
  margin-bottom: 24px;
}

.footer-responsible h4 {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.28);
  text-align: center;
  margin-bottom: 18px;
}

.responsible-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.responsible-logos a {
  opacity: .42;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}

.responsible-logos a:hover { opacity: .88; }

.responsible-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-bottom > p {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: .75rem;
  color: rgba(255,255,255,.28);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   Brand + Policy Pages
   Used by betsson.html, bet365.html, betwarrior.html, etc.
   ============================================================ */

.brand-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  padding: 48px 0 40px;
}

.brand-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-logo-wrap {
  background: var(--tint);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  flex-shrink: 0;
}
.brand-logo-wrap img { height: 44px; width: auto; }

.brand-meta { flex: 1; min-width: 280px; }
.brand-meta h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.brand-meta .brand-desc { color: var(--ink-mid); margin-bottom: 18px; font-size: 1rem; }

.brand-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.brand-badge {
  background: var(--tint);
  border: 1px solid var(--rule);
  color: var(--ink-mid);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
}
.brand-badge.green {
  background: rgba(45,106,79,.06);
  border-color: rgba(45,106,79,.22);
  color: #2d6a4f;
}

.brand-rating-big { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.brand-score {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-family: var(--font-serif);
}
.brand-score-label { font-size: .8rem; color: var(--ink-muted); }
.brand-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }

.brand-content { padding: 48px 0; }
.brand-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: start; }
.brand-main { display: flex; flex-direction: column; gap: 28px; }

.brand-section {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
}
.brand-section h2 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.bonus-table { width: 100%; border-collapse: collapse; }
.bonus-table td {
  padding: 10px 14px;
  font-size: .9rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.bonus-table td:first-child { color: var(--ink-muted); width: 40%; }
.bonus-table td:last-child { color: var(--ink); font-weight: 600; }
.bonus-table tr:last-child td { border-bottom: none; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros h3, .cons h3 {
  font-size: .85rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pros h3 { color: #2d6a4f; }
.cons h3 { color: var(--red); }
.pros ul li, .cons ul li {
  font-size: .87rem;
  color: var(--ink-mid);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.pros ul li::before { content: '+'; color: #2d6a4f; font-weight: 700; flex-shrink: 0; }
.cons ul li::before { content: '–'; color: var(--red); font-weight: 700; flex-shrink: 0; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}
.game-chip {
  background: var(--tint);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 10px 12px;
  text-align: center;
  font-size: .8rem;
  color: var(--ink-mid);
  transition: all var(--transition);
}
.game-chip:hover { border-color: var(--ink-muted); color: var(--ink); }
.game-chip .game-icon { font-size: 1.5rem; margin-bottom: 4px; }

.brand-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-box h3 { font-size: 1rem; margin-bottom: 16px; }

.cta-box { background: var(--tint); text-align: center; }
.cta-box .btn { width: 100%; justify-content: center; margin-top: 12px; }
.cta-box .cta-bonus {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-serif);
}
.cta-box .cta-sub { font-size: .77rem; color: var(--ink-muted); margin-top: 4px; }

.license-list { display: flex; flex-direction: column; gap: 8px; }
.license-item { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--ink-mid); }
.license-item::before { content: '🛡'; font-size: .85rem; }

.method-list { display: flex; flex-direction: column; gap: 8px; }
.method-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.method-item:last-child { border-bottom: none; }
.method-name { color: var(--ink-mid); display: flex; align-items: center; gap: 6px; }
.method-detail { color: var(--ink-muted); font-size: .77rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--ink-muted);
  padding: 14px 0 0;
}
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: .4; }

.policy-hero {
  background: var(--surface);
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.policy-hero h1 { margin-bottom: 8px; }
.policy-hero p { color: var(--ink-muted); }

.policy-body { padding: 56px 0 80px; }
.policy-content { max-width: 800px; }
.policy-content h2 {
  font-size: 1.2rem;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p {
  color: var(--ink-mid);
  font-size: .94rem;
  line-height: 1.78;
  margin-bottom: 14px;
}
.policy-content ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--ink-mid);
  font-size: .94rem;
  line-height: 1.78;
  margin-bottom: 14px;
}
.policy-content ul li { margin-bottom: 6px; }
.policy-content a { color: var(--accent); }
.policy-content strong { color: var(--ink); }

.menores-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--bg);
}
.menores-icon { font-size: 3.5rem; margin-bottom: 20px; }
.menores-page h1 { margin-bottom: 14px; }
.menores-page p { color: var(--ink-muted); max-width: 520px; margin: 0 auto 28px; font-size: .95rem; }
.menores-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto 32px;
}
.menores-link {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: var(--ink-mid);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.menores-link:hover { border-color: var(--ink-muted); color: var(--ink); }

.jr-help-strip {
  background: var(--tint);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}

.sidebar-accent {
  background: var(--tint) !important;
  border-color: var(--rule) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .gloss-row { grid-template-columns: 1fr; gap: 4px; }

  .brand-grid { grid-template-columns: 1fr; }
  .brand-sidebar { flex-direction: row; flex-wrap: wrap; }
  .sidebar-box { flex: 1; min-width: 240px; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .masthead-nav { display: none; }
  .site-nav { display: none; }
  .hamburger { display: block; }

  .article-opener { padding: 44px 0 0; }

  .op-inline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .op-inline-links {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .faq-ed-item { grid-template-columns: 1fr; gap: 4px; }
  .faq-ed-num { font-size: .8rem; }

  .age-gate { padding: 36px 20px; }
  .age-gate-btns { flex-direction: column; }
  .age-gate-btns .btn { width: 100%; }

  .footer-ed-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-ed-legal { justify-content: center; }

  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }

  .brand-hero-inner { flex-direction: column; }
  .brand-logo-wrap { min-width: 0; width: 100%; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
