/* ================================================================
   BrazilCasinoReview — MIRAGEM DOURADA
   Brazilian Carnival × Rio Editorial × Luxury Magazine
   
   Palette:
   --areia:    #FEFAE8  (warm sand/ivory — base, not dark!)
   --verde:    #009C3B  (Brasil flag green)
   --ouro:     #FFDF00  (carnival gold/yellow)
   --azul:     #002776  (flag deep blue)
   --samba:    #E8003D  (carnival red-pink)
   --noite:    #0D0A00  (warm near-black)
   --creme:    #FFF8E7  (card cream)
   
   Type: Bebas Neue (display) + DM Serif Display (editorial) + Inter (body)
   Signature: Diagonal sash cuts through sections at -3deg
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --areia: #FEFAE8;
  --areia-dark: #F5EDCA;
  --verde: #009C3B;
  --verde-dark: #007A2E;
  --verde-light: #00C94A;
  --ouro: #FFDF00;
  --ouro-dark: #E5C800;
  --azul: #002776;
  --azul-light: #1A3F9C;
  --samba: #E8003D;
  --samba-light: #FF1A54;
  --noite: #0D0A00;
  --noite-soft: #1A1500;
  --creme: #FFFDF0;
  --muted: #6B5E3A;
  --muted-light: #9A8C6A;
  --border-warm: rgba(0,39,118,0.12);
  --border-gold: rgba(255,223,0,0.4);
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-card: 0 2px 24px rgba(13,10,0,0.10);
  --shadow-lift: 0 12px 48px rgba(13,10,0,0.18);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-editorial: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--areia); color: var(--noite); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* ================================================================
   AGE BANNER — Diagonal stripe ribbon feel
================================================================ */
.age-banner {
  background: repeating-linear-gradient(
    -45deg,
    var(--verde) 0px,
    var(--verde) 10px,
    var(--ouro) 10px,
    var(--ouro) 20px
  );
  text-align: center;
  padding: 7px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noite);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.age-badge {
  background: var(--noite);
  color: var(--ouro);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--noite);
  border-bottom: 3px solid var(--ouro);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--areia);
  white-space: nowrap;
}

.logo-diamond {
  width: 28px;
  height: 28px;
  background: var(--ouro);
  transform: rotate(45deg);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-diamond::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--verde);
  border-radius: 50%;
  transform: rotate(-45deg);
}

.logo-cv { color: var(--ouro); }
.logo-rest { color: var(--areia); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(254,250,232,0.65);
  transition: all 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--ouro);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover { color: var(--areia); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.lang-switcher {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(254,250,232,0.6);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  transition: all 0.2s;
  text-transform: uppercase;
}

.lang-switcher:hover {
  color: var(--ouro);
  border-color: var(--ouro);
}

.nav-age-badge {
  background: var(--samba);
  color: var(--areia);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--areia);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--verde);
  color: var(--areia);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 3px;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ouro);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--noite); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--areia);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid rgba(254,250,232,0.35);
  border-radius: 3px;
  transition: all 0.22s;
}

.btn-ghost:hover {
  border-color: var(--ouro);
  color: var(--ouro);
}

.btn-outline-verde {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--verde);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 2px solid var(--verde);
  border-radius: 3px;
  transition: all 0.2s;
}

.btn-outline-verde:hover {
  background: var(--verde);
  color: var(--areia);
}

/* ================================================================
   HERO — Diagonal sash layout. Cream bg, then the noite panel cuts in.
================================================================ */
.hero {
  background: var(--noite);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* Carnival confetti SVG background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(255,223,0,0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(0,156,59,0.10) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(232,0,61,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Diagonal sash — THE signature element */
.hero-sash {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 52%;
  height: 140%;
  background: linear-gradient(160deg, var(--verde) 0%, var(--verde-dark) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-sash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent 0,
    transparent 30px,
    rgba(0,0,0,0.06) 30px,
    rgba(0,0,0,0.06) 31px
  );
}

/* Gold stripe accent on sash edge */
.hero-sash-stripe {
  position: absolute;
  top: -20%;
  right: calc(52% - 5% - 6px);
  width: 6px;
  height: 140%;
  background: var(--ouro);
  z-index: 1;
  transform: skewX(-15deg) translateX(40px);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Left: editorial headline */
.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ouro);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--areia);
  margin-bottom: 8px;
}

.hero-headline-accent {
  color: var(--ouro);
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  display: block;
}

.hero-sub-editorial {
  font-family: var(--font-editorial);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: rgba(254,250,232,0.5);
  margin: 20px 0 10px;
  line-height: 1.4;
}

.hero-body {
  font-size: 15px;
  color: rgba(254,250,232,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hstat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ouro);
  line-height: 1;
}

.hstat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(254,250,232,0.45);
}

/* Hero right: stacked casino cards on verde sash */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 40px;
}

.hero-casino-card {
  background: rgba(254,250,232,0.07);
  border: 1px solid rgba(255,223,0,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  animation: slide-up 0.6s ease both;
}

.hero-casino-card:nth-child(2) { animation-delay: 0.15s; }
.hero-casino-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-casino-card:hover {
  background: rgba(254,250,232,0.12);
  border-color: var(--ouro);
  transform: translateX(-4px);
}

.hcc-logo {
  width: 96px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.hcc-betsson { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #f9a825; }
.hcc-betfair { background: linear-gradient(135deg, #003399, #0041c2); color: #ff8c00; }

.hcc-info { flex: 1; }
.hcc-name { font-size: 14px; font-weight: 700; color: var(--areia); margin-bottom: 3px; }
.hcc-bonus { font-size: 12px; color: var(--ouro); font-weight: 600; }

.hcc-score {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ouro);
  line-height: 1;
}

.hero-verified {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0,156,59,0.15);
  border: 1px solid rgba(0,156,59,0.3);
  border-radius: var(--radius);
}

.hv-icon { font-size: 20px; }
.hv-text { font-size: 12px; color: rgba(254,250,232,0.7); line-height: 1.4; }
.hv-text strong { color: var(--verde-light); }

/* ================================================================
   DIAGONAL SECTION DIVIDER — The signature sash motif
================================================================ */
.sash-divider {
  height: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sash-divider.to-cream {
  background: var(--noite);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.sash-divider.to-dark {
  background: var(--areia);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

/* ================================================================
   SECTION COMMONS
================================================================ */
.section-wrap { padding: 80px 0; }
.section-wrap.dark { background: var(--noite); color: var(--areia); }
.section-wrap.cream { background: var(--areia); }
.section-wrap.verde { background: var(--verde); color: var(--areia); }
.section-wrap.ouro { background: var(--ouro); color: var(--noite); }
.section-wrap.azul { background: var(--azul); color: var(--areia); }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow.gold { color: var(--ouro); }
.section-eyebrow.verde { color: var(--verde); }
.section-eyebrow.samba { color: var(--samba); }
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: currentColor; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  opacity: 0.6;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ================================================================
   CASINO CARDS — Magazine editorial style
================================================================ */
.casinos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.casino-card {
  background: var(--creme);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.cc-header {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 20px;
  overflow: hidden;
}

.cc-header-betsson {
  background: linear-gradient(135deg, #0d1b2e 0%, #1a2744 100%);
}

.cc-header-betfair {
  background: linear-gradient(135deg, #001a5e 0%, #003399 100%);
}

/* Diagonal candy stripe on header */
.cc-header::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 6px,
    rgba(255,255,255,0.04) 6px,
    rgba(255,255,255,0.04) 7px
  );
}

.cc-brand-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  z-index: 1;
}

.cc-brand-logo.betsson { color: #f9a825; }
.cc-brand-logo.betfair { color: #ff8c00; }

.cc-header-meta {
  margin-left: auto;
  text-align: right;
  z-index: 1;
}

.cc-score-big {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--ouro);
}

.cc-score-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.cc-body { padding: 24px 28px; }

.cc-stars {
  font-size: 16px;
  color: var(--ouro-dark);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.cc-bonus-strip {
  background: linear-gradient(135deg, var(--verde), var(--verde-dark));
  color: var(--areia);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cc-bonus-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.cc-bonus-val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ouro);
}

.cc-license {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(0,39,118,0.06);
  border: 1px solid var(--border-warm);
  border-left: 3px solid var(--azul);
  border-radius: 4px;
  margin-bottom: 18px;
}

.cc-license-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.cc-license-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--azul);
  display: block;
  line-height: 1.4;
}

.cc-license-link {
  font-size: 11px;
  color: var(--verde);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.cc-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.cc-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verde);
  flex-shrink: 0;
}

.cc-footer {
  padding: 0 28px 24px;
  display: flex;
  gap: 10px;
}

.btn-cc-visit {
  flex: 1;
  text-align: center;
  padding: 13px;
  background: var(--noite);
  color: var(--areia);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
  border: 2px solid var(--noite);
}

.btn-cc-visit:hover {
  background: var(--samba);
  border-color: var(--samba);
}

.btn-cc-review {
  padding: 13px 18px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--border-warm);
  border-radius: 3px;
  transition: all 0.2s;
}

.btn-cc-review:hover {
  border-color: var(--noite);
  color: var(--noite);
}

/* ================================================================
   FEATURES / TRUST BAND — Ouro background
================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
}

.feature-item {
  background: var(--ouro);
  padding: 36px 28px;
  transition: background 0.2s;
}

.feature-item:hover { background: var(--ouro-dark); }

.fi-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--noite);
  margin-bottom: 10px;
  line-height: 1;
}

.feature-item p {
  font-size: 13px;
  color: rgba(13,10,0,0.65);
  line-height: 1.6;
}

/* ================================================================
   CTA STRIP — Samba red diagonal
================================================================ */
.cta-strip {
  background: var(--samba);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: 'Brazil Casino Review';
  position: absolute;
  font-family: var(--font-display);
  font-size: 160px;
  color: rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.cta-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-strip-text h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--areia);
  line-height: 1;
  margin-bottom: 6px;
}

.cta-strip-text p {
  font-size: 15px;
  color: rgba(254,250,232,0.75);
}

.btn-samba-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--areia);
  color: var(--samba);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 3px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-samba-cta:hover {
  background: var(--noite);
  color: var(--ouro);
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  background: var(--noite);
  position: relative;
  padding: 90px 32px 80px;
  overflow: hidden;
}

/* Diagonal rule */
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--samba), var(--ouro), var(--verde));
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--ouro); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  color: var(--areia);
  line-height: 0.95;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  color: rgba(254,250,232,0.55);
  max-width: 560px;
}

/* ================================================================
   REVIEW LIST PAGE
================================================================ */
.reviews-list-section {
  padding: 60px 0 100px;
}

.review-row {
  display: grid;
  grid-template-columns: 56px 150px 1fr 120px 160px;
  gap: 20px;
  align-items: center;
  background: var(--creme);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.review-row:hover {
  border-color: var(--samba);
  box-shadow: 0 8px 40px rgba(232,0,61,0.12);
  transform: translateX(4px);
}

.review-row-rank {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--areia-dark);
}

.review-row-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.betsson-bg { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #f9a825; }
.betfair-bg { background: linear-gradient(135deg, #001a5e, #003399); color: #ff8c00; }

.review-row-info h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 6px;
}

.review-row-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.review-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }

.rtag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  background: rgba(0,39,118,0.08);
  color: var(--azul);
  border: 1px solid rgba(0,39,118,0.15);
}

.review-license-line {
  font-size: 12px;
  color: var(--muted-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-license-line a { color: var(--verde); font-weight: 700; }

.review-row-score { text-align: center; }
.review-score-num { font-family: var(--font-display); font-size: 48px; color: var(--noite); line-height: 1; }
.review-stars { color: var(--ouro-dark); font-size: 14px; margin: 3px 0; }
.review-verdict { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--verde); }

.review-row-cta { display: flex; flex-direction: column; gap: 8px; }

/* ================================================================
   REVIEW DETAIL PAGE
================================================================ */
.review-hero-band {
  background: var(--noite);
  padding: 80px 32px 60px;
  position: relative;
  overflow: hidden;
}

.review-hero-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--samba), var(--ouro), var(--verde));
}

.rhb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
}

.rhb-logo {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.rhb-meta h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  color: var(--areia);
  line-height: 1;
  margin-bottom: 14px;
}

.rhb-score-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rhb-score { font-family: var(--font-display); font-size: 28px; color: var(--ouro); }
.rhb-stars { font-size: 16px; color: var(--ouro); }
.rhb-verdict {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--verde);
  color: var(--areia);
}

.rhb-license {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255,223,0,0.3);
  border-left: 3px solid var(--ouro);
  border-radius: 4px;
  background: rgba(255,223,0,0.06);
  font-size: 13px;
  color: rgba(254,250,232,0.75);
}

.rhb-license strong { color: var(--ouro); }
.rhb-license a { color: var(--verde-light); font-weight: 700; }

.rhb-score-circle {
  text-align: center;
  background: var(--ouro);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rhb-score-circle .score-big { font-family: var(--font-display); font-size: 44px; color: var(--noite); line-height: 1; }
.rhb-score-circle .score-sub { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(13,10,0,0.6); }

/* Review layout */
.review-content { padding: 60px 0 100px; background: var(--areia); }

.review-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.review-block {
  background: var(--creme);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}

.review-block h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--noite);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ouro);
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-block p { color: var(--muted); line-height: 1.75; margin-bottom: 12px; font-size: 15px; }
.review-block p strong { color: var(--noite); }

.bonus-box {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--verde), var(--verde-dark));
  border-radius: 8px;
}

.bonus-amount { font-family: var(--font-display); font-size: 64px; color: var(--ouro); line-height: 1; }
.bonus-desc { font-size: 16px; color: rgba(254,250,232,0.9); margin: 8px 0; font-weight: 600; }
.bonus-tcs { font-size: 12px; color: rgba(254,250,232,0.55); margin-top: 10px; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.pros-box, .cons-box {
  padding: 20px;
  border-radius: 6px;
}

.pros-box {
  background: rgba(0,156,59,0.06);
  border: 1px solid rgba(0,156,59,0.2);
}

.cons-box {
  background: rgba(232,0,61,0.05);
  border: 1px solid rgba(232,0,61,0.15);
}

.pros-box h4 { color: var(--verde); font-size: 14px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.cons-box h4 { color: var(--samba); font-size: 14px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }

.pros-box li, .cons-box li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.pros-box li::before { content: '✓'; position: absolute; left: 0; color: var(--verde); font-weight: 700; }
.cons-box li::before { content: '✕'; position: absolute; left: 0; color: var(--samba); font-weight: 700; }

.license-tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.license-tbl tr { border-bottom: 1px solid var(--border-warm); }
.license-tbl td { padding: 11px 0; color: var(--muted); }
.license-tbl td:first-child { color: var(--noite); font-weight: 700; width: 42%; padding-right: 16px; }
.license-tbl a { color: var(--verde); font-weight: 700; }

.payment-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.payment-pill {
  padding: 10px 16px;
  background: var(--areia);
  border: 1px solid var(--border-warm);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--noite);
  transition: all 0.2s;
}

.payment-pill:hover { border-color: var(--verde); color: var(--verde); }

/* SIDEBAR */
.review-sidebar { position: sticky; top: 90px; }

.sb-widget {
  background: var(--creme);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.sb-score-widget { text-align: center; }
.sbw-big { font-family: var(--font-display); font-size: 72px; color: var(--noite); line-height: 1; }
.sbw-stars { font-size: 20px; color: var(--ouro-dark); margin: 6px 0; }
.sbw-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 20px; }

.sb-widget h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-warm);
}

.rbar { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 12px; }
.rbar-label { width: 80px; flex-shrink: 0; color: var(--muted); font-weight: 600; }
.rbar-track { flex: 1; height: 5px; background: var(--areia-dark); border-radius: 3px; overflow: hidden; }
.rbar-fill { height: 100%; background: linear-gradient(90deg, var(--verde-dark), var(--verde)); border-radius: 3px; }
.rbar-num { width: 28px; text-align: right; font-weight: 700; color: var(--noite); }

.sb-age {
  text-align: center;
  padding: 20px;
  background: var(--noite);
  border-radius: var(--radius-lg);
  color: var(--areia);
}

.sb-age-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--ouro);
  line-height: 1;
}

.sb-age p { font-size: 12px; color: rgba(254,250,232,0.55); margin-top: 8px; }

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-section { padding: 60px 0 100px; background: var(--areia); }

.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--noite);
  margin-bottom: 16px;
}

.about-text p { color: var(--muted); font-size: 16px; line-height: 1.75; }

.about-visual-panel {
  background: var(--noite);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 20px,
    rgba(255,223,0,0.03) 20px,
    rgba(255,223,0,0.03) 21px
  );
}

.avp-logo {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--ouro);
  display: block;
  margin-bottom: 8px;
}

.avp-tagline { font-family: var(--font-editorial); font-style: italic; font-size: 16px; color: rgba(254,250,232,0.5); }

.avp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }

.avp-stat {
  background: rgba(255,223,0,0.08);
  border: 1px solid rgba(255,223,0,0.15);
  padding: 16px;
  border-radius: 6px;
}

.avp-stat-num { font-family: var(--font-display); font-size: 28px; color: var(--ouro); }
.avp-stat-label { font-size: 11px; color: rgba(254,250,232,0.45); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

.values-band { background: var(--azul); padding: 60px 0; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); }

.value-cell { padding: 32px 24px; background: var(--azul); transition: background 0.2s; }
.value-cell:hover { background: var(--azul-light); }
.value-num { font-family: var(--font-display); font-size: 40px; color: var(--ouro); line-height: 1; margin-bottom: 10px; }
.value-text { font-size: 14px; color: rgba(254,250,232,0.7); font-weight: 500; line-height: 1.5; }

.method-section { padding: 60px 0; background: var(--areia); }

.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.method-step {
  position: relative;
  padding: 28px 24px;
  background: var(--creme);
  border: 1px solid var(--border-warm);
  border-top: 4px solid var(--samba);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.ms-num { font-family: var(--font-display); font-size: 48px; color: var(--areia-dark); line-height: 1; margin-bottom: 12px; }
.ms-title { font-size: 15px; font-weight: 800; color: var(--noite); margin-bottom: 8px; }
.ms-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-section { padding: 60px 0 100px; background: var(--areia); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-info-card {
  padding: 24px;
  background: var(--creme);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.2s;
}

.contact-info-card:hover { border-color: var(--samba); }
.cic-icon { font-size: 24px; margin-bottom: 8px; }
.cic-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 4px; }
.cic-val { font-size: 15px; font-weight: 600; color: var(--noite); }
.cic-val a { color: var(--verde); }

.contact-form-panel {
  background: var(--creme);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 6px; }

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--noite);
  background: var(--areia);
  border: 1px solid var(--areia-dark);
  border-radius: 4px;
  outline: none;
  transition: all 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(0,156,59,0.1);
}

.form-row textarea { resize: vertical; }

.success-alert {
  background: rgba(0,156,59,0.1);
  border: 1px solid rgba(0,156,59,0.3);
  border-left: 4px solid var(--verde);
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--verde-dark);
  margin-bottom: 24px;
}

/* ================================================================
   FAQ PAGE
================================================================ */
.faq-section { padding: 60px 0 100px; background: var(--areia); }
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--creme);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--samba); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--samba); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--noite);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--samba); }

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--muted-light);
  flex-shrink: 0;
  transition: all 0.3s;
  line-height: 1;
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ================================================================
   RESPONSIBLE GAMBLING PAGE
================================================================ */
.responsible-hero {
  background: var(--azul);
  padding: 90px 32px 80px;
  position: relative;
  overflow: hidden;
}

.responsible-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ouro), var(--samba), var(--verde));
}

.responsible-section { padding: 60px 0 100px; background: var(--areia); }

.responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.resp-card {
  background: var(--creme);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.resp-card.highlight {
  background: var(--noite);
  color: var(--areia);
  border: none;
}

.resp-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--noite);
  margin-bottom: 14px;
}

.resp-card.highlight h3 { color: var(--ouro); }

.resp-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.resp-card.highlight p { color: rgba(254,250,232,0.65); }

.help-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.help-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--creme);
  border: 2px solid var(--border-warm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.25s;
  gap: 10px;
}

.help-link-card:hover {
  border-color: var(--samba);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.hlc-icon { font-size: 36px; }
.hlc-name { font-family: var(--font-display); font-size: 18px; color: var(--noite); }
.hlc-desc { font-size: 12px; color: var(--muted-light); line-height: 1.5; }
.hlc-link { font-size: 13px; font-weight: 700; color: var(--verde); }

.cvv-banner {
  margin-top: 40px;
  background: var(--samba);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cvv-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--areia);
  line-height: 1;
  flex-shrink: 0;
}

.cvv-text h4 { font-family: var(--font-display); font-size: 24px; color: var(--areia); margin-bottom: 6px; }
.cvv-text p { font-size: 15px; color: rgba(254,250,232,0.8); }

/* ================================================================
   LEGAL PAGES
================================================================ */
.legal-section { padding: 60px 0 100px; background: var(--areia); }
.legal-body { max-width: 760px; }

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--noite);
  margin: 36px 0 12px;
  padding-left: 16px;
  border-left: 4px solid var(--samba);
}

.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-body ul { margin: 0 0 16px 0; }
.legal-body li { font-size: 15px; color: var(--muted); line-height: 1.8; padding-left: 20px; position: relative; margin-bottom: 6px; }
.legal-body li::before { content: '→'; position: absolute; left: 0; color: var(--verde); font-size: 12px; }
.legal-body a { color: var(--verde); font-weight: 700; }
.legal-body strong { color: var(--noite); }

.disclosure-callout {
  background: rgba(232,0,61,0.06);
  border: 1px solid rgba(232,0,61,0.2);
  border-left: 4px solid var(--samba);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 32px;
}

.disclosure-callout h3 { font-size: 17px; font-weight: 800; color: var(--samba); margin-bottom: 10px; }
.disclosure-callout p { margin: 0; }

/* ================================================================
   FOOTER — The complete Brazilian editorial footer
================================================================ */
.footer {
  background: var(--noite);
  border-top: 4px solid var(--ouro);
}

.footer-carnival-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--samba) 0px,
    var(--samba) 60px,
    var(--ouro) 60px,
    var(--ouro) 120px,
    var(--verde) 120px,
    var(--verde) 180px,
    var(--azul) 180px,
    var(--azul) 240px
  );
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand-col {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--areia);
  margin-bottom: 14px;
}

.f-logo-diamond {
  width: 26px;
  height: 26px;
  background: var(--ouro);
  transform: rotate(45deg);
  border-radius: 3px;
}

.footer-tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 15px;
  color: rgba(254,250,232,0.45);
  margin-bottom: 28px;
  line-height: 1.5;
}

.footer-license-cards { display: flex; flex-direction: column; gap: 10px; }

.flc {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 12px;
}

.flc-brand { font-family: var(--font-display); font-size: 14px; color: var(--ouro); margin-bottom: 3px; }
.flc-data { color: rgba(254,250,232,0.5); line-height: 1.5; }
.flc-link { color: var(--verde-light); font-weight: 600; font-size: 11px; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,223,0,0.15);
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col a {
  font-size: 14px;
  color: rgba(254,250,232,0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover { color: var(--ouro); }
.footer-col a span { font-size: 12px; }

/* Responsible gambling column */
.footer-resp-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--samba);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232,0,61,0.2);
}

.footer-resp-col p {
  font-size: 13px;
  color: rgba(254,250,232,0.45);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-resp-links { display: flex; flex-direction: column; gap: 9px; }

.footer-resp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  font-size: 13px;
  color: rgba(254,250,232,0.65);
  transition: all 0.2s;
}

.footer-resp-link:hover {
  background: rgba(232,0,61,0.1);
  border-color: rgba(232,0,61,0.3);
  color: var(--areia);
}

.frl-icon { font-size: 16px; flex-shrink: 0; }

.footer-cvv-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--samba);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  color: var(--areia);
  margin-top: 8px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 32px;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-legal-row a { color: rgba(254,250,232,0.45); transition: color 0.2s; }
.footer-legal-row a:hover { color: var(--ouro); }
.footer-legal-row .sep { color: rgba(255,255,255,0.15); }

.footer-age-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-age-badge {
  background: var(--samba);
  color: var(--areia);
  font-size: 13px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(254,250,232,0.3);
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 11px;
  color: rgba(254,250,232,0.25);
  text-align: center;
}

/* ================================================================
   COOKIE BANNER
================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(140px);
  width: calc(100% - 40px);
  max-width: 780px;
  background: var(--noite-soft);
  border: 1px solid rgba(255,223,0,0.35);
  border-top: 3px solid var(--ouro);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  z-index: 9999;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.visible { transform: translateX(-50%) translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-icon { font-size: 28px; flex-shrink: 0; }

.cookie-text {
  flex: 1;
  font-size: 13px;
  color: rgba(254,250,232,0.7);
  line-height: 1.5;
  min-width: 200px;
}

.cookie-text a { color: var(--ouro); font-weight: 700; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-accept {
  padding: 10px 22px;
  background: var(--verde);
  color: var(--areia);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  transition: all 0.2s;
}

.btn-cookie-accept:hover { background: var(--verde-light); }

.btn-cookie-reject {
  padding: 10px 18px;
  background: transparent;
  color: rgba(254,250,232,0.5);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  transition: all 0.2s;
}

.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.35); color: var(--areia); }

/* ================================================================
   SCROLL-REVEAL ANIMATIONS
================================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-headline { font-size: clamp(48px, 8vw, 72px); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .casinos-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .help-links-grid { grid-template-columns: 1fr 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .rhb-inner { grid-template-columns: 1fr; }
  .review-row { grid-template-columns: 40px 120px 1fr; }
  .review-row-score, .review-row-cta { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 71px; left: 0; right: 0;
    background: var(--noite);
    padding: 20px 24px;
    border-bottom: 2px solid var(--ouro);
    z-index: 99;
    gap: 0;
  }
  .nav-links.open .nav-link {
    height: auto;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-actions.open {
    display: flex;
    position: fixed;
    top: 71px;
    left: 0; right: 0;
    margin-top: 240px;
    background: var(--noite);
    padding: 12px 24px;
    z-index: 99;
  }
  .about-mission { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .responsible-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .hero-stats-row { flex-wrap: wrap; gap: 20px; }
  .method-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .help-links-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; }
  .cookie-btns { width: 100%; }
  .btn-cookie-accept, .btn-cookie-reject { flex: 1; }
  .cvv-banner { flex-direction: column; text-align: center; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--areia); }
::-webkit-scrollbar-thumb { background: var(--verde); border-radius: 3px; }
