/* ============================================================
   AviatorSinais — Design System
   Mobile-first, CSS3 custom properties
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --color-bg:        #FFFFFF;
  --color-accent:    #E63946;
  --color-accent-dk: #c0252f;
  --color-text:      #1a1a2e;
  --color-muted:     #6c757d;
  --color-surface:   #f8f9fa;
  --color-border:    #e0e0e0;
  --color-star:      #f4a20a;

  --font-title: 'Nunito', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.13);

  --header-h: 64px;
  --max-w: 1100px;
  --gap: 24px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, iframe { max-width: 100%; display: block; }
img { border-radius: 12px; }
img.img-square { border-radius: 50% !important; }

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.4em; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); margin-bottom: .75rem; }
h2 { font-size: clamp(1.3rem, 4vw, 1.9rem); margin-bottom: .6rem; margin-top: 2rem; }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); margin-bottom: .5rem; margin-top: 1.5rem; }

p  { margin-bottom: 1rem; }
li { margin-bottom: .35rem; }

strong { font-weight: 700; }

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 16px;
}

.section { padding-block: 48px; }
.section--alt { background: var(--color-surface); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  background: var(--color-accent);
  color: #fff !important;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(230,57,70,.25);
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--color-accent-dk);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(230,57,70,.35);
}
.btn-cta:active { transform: scale(.98); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-accent) !important;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .95rem;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-accent);
  cursor: pointer;
  text-decoration: none !important;
  transition: background .2s, color .2s;
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #fff !important;
}

/* ── Header / Nav ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text) !important;
  text-decoration: none !important;
  letter-spacing: -.5px;
}
.site-logo span { color: var(--color-accent); }

/* Desktop nav — hidden on mobile (mobile-first), shown on ≥768px */
.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .88rem;
  color: var(--color-text) !important;
  text-decoration: none !important;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--color-surface);
  color: var(--color-accent) !important;
}
.site-nav .nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  margin-left: 8px;
}
.site-nav .nav-cta:hover {
  background: var(--color-accent-dk);
}

/* Burger button — visible on mobile, hidden on ≥768px */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  padding: 24px 16px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text) !important;
  text-decoration: none !important;
  padding: 14px 12px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--color-border);
  transition: background .15s;
}
.mobile-nav a:hover { background: var(--color-surface); }
.mobile-nav .nav-cta {
  margin-top: 12px;
  background: var(--color-accent);
  color: #fff !important;
  border: none;
  text-align: center;
}

/* Burger open state */
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: 10px 0;
  font-size: .82rem;
  color: var(--color-muted);
}
.breadcrumb a { color: var(--color-muted) !important; }
.breadcrumb a:hover { color: var(--color-accent) !important; }
.breadcrumb span { margin-inline: 6px; }
.breadcrumb-current { color: var(--color-text); font-weight: 600; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding-block: 64px 48px;
  text-align: center;
}
.hero h1 { margin-bottom: .4rem; color: #fff; }
.hero .article-meta { color: rgba(255,255,255,.6); }
.hero .article-meta a { color: rgba(255,255,255,.6); }
.article-meta {
  font-size: .8rem;
  color: var(--color-muted);
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.article-meta a {
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero .hero-summary {
  font-size: 1.08rem;
  font-weight: 600;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,.85);
}
.hero .btn-cta { font-size: 1.05rem; padding: 16px 36px; }

/* ── Demo Iframe ────────────────────────────────────────── */
.demo-wrapper {
  background: #111;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-block: 32px;
  box-shadow: var(--shadow-lg);
}
.demo-label {
  background: var(--color-text);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .95rem;
}
.demo-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}
.btn-under-iframe {
  display: block;
  text-align: center;
  border-radius: 0;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  padding: 18px;
  font-size: 1.05rem;
}

/* ── Casino Card ────────────────────────────────────────── */
.casino-section { padding-block: 40px; }
.casino-section-title {
  text-align: center;
  margin-bottom: 24px;
}

.casino-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  margin-inline: auto;
  transition: transform .2s ease, box-shadow .2s ease;
}
.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}

.casino-logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.casino-rating {
  color: #FFD700;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .05em;
}

.casino-bonus {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  text-align: center;
}

.casino-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.badge {
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
}

.casino-card .btn-cta {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  animation: pulse-cta 2s ease-in-out infinite;
}

/* ── Content area ───────────────────────────────────────── */
.content-section { padding-block: 48px; }

.content-body { max-width: 780px; margin-inline: auto; }
.content-body > * + * { margin-top: 1rem; }
.content-body h2 {
  margin-top: 2.5rem;
  padding-top: .25rem;
  border-top: none;
  border-left: 4px solid var(--color-accent);
  padding-left: 14px;
}
.content-body h2:first-child { margin-top: 0; }

/* Highlight box */
.highlight-box {
  background: #fff5f5;
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin-block: 1.5rem;
}
.highlight-box p { margin: 0; font-weight: 600; }

/* Info box */
.info-box {
  background: #fff5f5;
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin-block: 1.5rem;
}
.info-box p { margin: 0; }

/* Tables */
.table-wrap { overflow-x: auto; margin-block: 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
th {
  background: var(--color-text);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 700;
}
td { padding: 10px 14px; border-bottom: 1px solid var(--color-border); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--color-surface); }

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-section { padding-block: 48px; }
.faq-section h2 { text-align: center; margin-bottom: 32px; }

.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: var(--color-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  text-align: left;
  gap: 12px;
  transition: background .15s;
}
.faq-question:hover { background: var(--color-surface); }
.faq-question[aria-expanded="true"] { background: #fff4f4; color: var(--color-accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .25s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  background: #fff;
}
.faq-answer.open { max-height: 800px; }
.faq-answer-inner { padding: 4px 20px 20px; color: #333; }
.faq-answer-inner p { margin: 0; font-size: .95rem; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--color-text);
  color: #ccc;
  padding-block: 48px 32px;
  font-size: .88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-bottom: 28px;
}
.footer-links a {
  color: #ccc !important;
  text-decoration: none !important;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .9rem;
  transition: color .15s;
}
.footer-links a:hover { color: #fff !important; }

.footer-disclaimer {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  text-align: center;
  font-size: .83rem;
  line-height: 1.6;
  color: #bbb;
}
.footer-disclaimer strong { color: #f4a20a; }

.footer-copyright {
  text-align: center;
  font-size: .8rem;
  color: #888;
}

/* ── Utility classes ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted   { color: var(--color-muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.chip {
  display: inline-block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-muted);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 640px) {
  .demo-wrapper iframe { height: 550px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .container { padding-inline: 24px; }
  .section { padding-block: 64px; }
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .burger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ── Candle cards (vela-rosa page) ──────────────────────── */
.candle-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-block: 32px;
}

.candle-card {
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.candle-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }

.candle-card--blue  { background: #e8f4fd; border: 2px solid #3b82f6; box-shadow: 0 2px 12px rgba(59,130,246,.1); }
.candle-card--purple { background: #f3e8fd; border: 2px solid #7c3aed; box-shadow: 0 2px 12px rgba(124,58,237,.1); }
.candle-card--pink  {
  background: #fde8f3;
  border: 2px solid #ec4899;
  box-shadow: 0 0 20px rgba(255,20,147,.3), 0 4px 16px rgba(236,72,153,.15);
  transform: scale(1.05);
  z-index: 1;
}
.candle-card--pink:hover { transform: scale(1.07) translateY(-5px); }

.candle-emoji { font-size: 2.2rem; display: block; margin-bottom: 10px; }

.candle-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.candle-card--blue   .candle-name  { color: #1565c0; }
.candle-card--purple .candle-name  { color: #6a1b9a; }
.candle-card--pink   .candle-name  { color: var(--color-accent); }

.candle-range {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.candle-desc {
  font-size: .85rem;
  color: var(--color-muted);
  margin: 0;
}

.candle-badge {
  display: inline-block;
  margin-top: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

@media (min-width: 600px) {
  .candle-grid { flex-direction: row; }
}

/* ── Numbered steps ──────────────────────────────────────── */
.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block: 1rem;
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  counter-increment: steps;
  margin-bottom: 0;
}
.steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Pattern grid (padroes-aviator page) ─────────────────── */
.pattern-section { padding-block: 40px; }
.pattern-section-title { text-align: center; margin-bottom: 28px; }

.pattern-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pattern-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.pattern-card:hover { box-shadow: var(--shadow-md); }

.pattern-label {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--color-text);
}

.pattern-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.dot--blue   { background: #2979ff; }
.dot--purple { background: #8e24aa; }
.dot--pink   { background: var(--color-accent); box-shadow: 0 0 0 3px rgba(230,57,70,.25); }

.pattern-desc {
  font-size: .88rem;
  color: var(--color-muted);
  font-style: italic;
  margin: 0;
}

@media (min-width: 640px) {
  .pattern-grid { flex-direction: row; }
  .pattern-card  { flex: 1; }
}

/* ── Pix advantages grid (aviator-com-pix page) ─────────── */
.pix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-block: 32px;
}

.pix-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.pix-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pix-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.pix-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .95rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.pix-desc {
  font-size: .82rem;
  color: var(--color-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .pix-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Regulation warning box ──────────────────────────────── */
.regulation-box {
  background: #fffbea;
  border: 2px solid #f4a20a;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-block: 32px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.regulation-box .reg-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.regulation-box p {
  margin: 0;
  font-size: .93rem;
  line-height: 1.65;
  color: #5a4100;
}
.regulation-box strong { color: #b35a00; }

/* ── Pix steps (numbered bold labels) ────────────────────── */
.pix-steps {
  list-style: none;
  padding: 0;
  margin-block: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pix-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  font-size: .95rem;
  margin: 0;
}
.pix-steps li .step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #08a045;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Strategy cards (estrategia-aviator page) ────────────── */
.strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-block: 32px;
}

.strategy-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 22px 20px;
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.strategy-card:hover { box-shadow: var(--shadow-md); }

.strategy-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.strategy-body { flex: 1; }

.strategy-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.strategy-risk {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.risk--low    { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.risk--medium { background: #fff8e1; color: #e65100; border: 1px solid #ffe082; }
.risk--high   { background: #fce4ec; color: #880e4f; border: 1px solid #f48fb1; }

.strategy-desc {
  font-size: .88rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .strategy-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Predictor signal indicators ─────────────────────────── */
.signal-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block: 1.5rem;
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: .93rem;
}

.signal-item--green  { background: #e8f5e9; border: 1px solid #a5d6a7; }
.signal-item--red    { background: #fce4ec; border: 1px solid #f48fb1; }
.signal-item--yellow { background: #fff8e1; border: 1px solid #ffe082; }

.signal-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
.signal-dot--green  { background: #2e7d32; }
.signal-dot--red    { background: #c62828; }
.signal-dot--yellow { background: #f9a825; }

.signal-text { flex: 1; }
.signal-text strong { display: block; margin-bottom: 2px; }
.signal-text span   { font-size: .82rem; color: var(--color-muted); }

/* ── Two-column bet block ────────────────────────────────── */
.bet-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-block: 1.5rem;
}
.bet-box {
  border-radius: var(--radius-md);
  padding: 18px 16px;
}
.bet-box--safe { background: #e8f5e9; border: 2px solid #81c784; }
.bet-box--risk { background: #fce4ec; border: 2px solid #f48fb1; }
.bet-box-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 6px;
}
.bet-box--safe .bet-box-title { color: #1b5e20; }
.bet-box--risk .bet-box-title { color: #880e4f; }
.bet-box p { margin: 0; font-size: .88rem; }

@media (min-width: 560px) {
  .bet-split { grid-template-columns: 1fr 1fr; }
}

/* ── Platform badges (baixar-aviator) ────────────────────── */
.platform-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-block: 28px;
}
.platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.platform-icon { font-size: 2rem; flex-shrink: 0; }
.platform-body { flex: 1; }
.platform-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 3px;
}
.platform-desc { font-size: .85rem; color: var(--color-muted); margin: 0; }
.platform-badge {
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.platform-badge--ok  { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.platform-badge--alt { background: #fff8e1; color: #e65100; border: 1px solid #ffe082; }

@media (min-width: 480px) {
  .platform-grid { flex-direction: row; }
  .platform-card { flex: 1; flex-direction: column; align-items: flex-start; }
}

/* ── Help block (perdi-dinheiro page) ────────────────────── */
.help-block {
  background: #e3f2fd;
  border: 2px solid #42a5f5;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-block: 32px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.help-block .help-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1.3;
}
.help-block-body { flex: 1; }
.help-block-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  color: #0d47a1;
  margin-bottom: 8px;
}
.help-block p {
  margin: 0 0 6px;
  font-size: .93rem;
  color: #1a237e;
  line-height: 1.6;
}
.help-block p:last-child { margin-bottom: 0; }
.help-block strong { color: #0d47a1; }

/* ── Discreet link (perdi-dinheiro page) ─────────────────── */
.link-subtle {
  color: var(--color-muted) !important;
  font-size: .88rem;
  text-decoration: underline;
}
.link-subtle:hover { color: var(--color-text) !important; }

/* ── Final help box (perdi-dinheiro) ─────────────────────── */
.final-help {
  background: var(--color-text);
  color: #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top: 40px;
  text-align: center;
}
.final-help h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.final-help p {
  font-size: .9rem;
  margin-bottom: 8px;
  color: #ccc;
}
.final-help p:last-child { margin-bottom: 0; }
.final-help strong { color: #f4a20a; }

/* ── Author Card (Sobre page) ───────────────────────────── */
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
}
.author-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  color: #fff;
}
.author-info { flex: 1; }
.author-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 2px;
}
.author-title {
  font-size: .82rem;
  color: var(--color-muted);
  margin: 0 0 10px;
}
.author-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.author-social a {
  font-size: .8rem;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text) !important;
  text-decoration: none !important;
  transition: background .15s, color .15s;
}
.author-social a:hover { background: var(--color-accent); color: #fff !important; border-color: var(--color-accent); }
@media (max-width: 560px) {
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-social { justify-content: center; }
}

/* ── Criteria Grid ──────────────────────────────────────── */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-block: 24px;
}
.criteria-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 4px solid var(--color-accent);
}
.criteria-card h3,
.criteria-card .criteria-title { font-size: .95rem; font-weight: 700; margin: 0 0 6px; font-family: var(--font-title); }
.criteria-card p,
.criteria-card .criteria-desc { font-size: .88rem; color: var(--color-muted); margin: 0; }
.criteria-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }

/* ── Contact Form ───────────────────────────────────────── */
.contact-wrap { max-width: 600px; margin-inline: auto; }
.contact-info {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.contact-info p { margin: 0 0 8px; font-size: .95rem; }
.contact-info p:last-child { margin: 0; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: #fff;
  box-sizing: border-box;
  transition: border-color .15s, outline .15s;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 0; border-color: var(--color-accent); }

/* ── Social Links ───────────────────────────────────────── */
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-block: 24px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-text) !important;
  text-decoration: none !important;
  transition: background .15s, color .15s, border-color .15s;
}
.social-link:hover { background: var(--color-accent); color: #fff !important; border-color: var(--color-accent); }

/* ── Content images (SVG illustrations) ─────────────────── */
.content-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  margin: 28px auto;
  border-radius: var(--radius-md);
}

/* ── Keyframe animations ─────────────────────────────────── */
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 20px rgba(230,57,70,.35); }
  50%       { box-shadow: 0 4px 32px rgba(230,57,70,.65), 0 0 0 8px rgba(230,57,70,.08); }
}
@keyframes dot-pop {
  from { opacity: 0; transform: scale(.25); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Scroll fade-in ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── btn-cta hover ───────────────────────────────────────── */
.btn-cta {
  transition: background .2s, transform .15s, box-shadow .2s, filter .15s;
}
.btn-cta:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

/* ── General card hover ──────────────────────────────────── */
.platform-card,
.pix-card,
.strategy-card,
.pattern-card,
.criteria-card,
.author-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.platform-card:hover,
.pix-card:hover,
.strategy-card:hover,
.pattern-card:hover,
.criteria-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

/* ── Pattern dot sequential animation ───────────────────── */
.dot.dot-animate {
  opacity: 0;
  animation: dot-pop .35s ease forwards;
  animation-delay: var(--dot-delay, 0s);
}

/* ── Stat numbers block ──────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 28px 0 8px;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Review cards ────────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-block: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.review-card::before {
  content: '"';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 6rem;
  line-height: .75;
  color: var(--color-accent);
  opacity: .15;
  position: absolute;
  top: 12px;
  left: 16px;
  pointer-events: none;
}
.review-stars { color: #FFD700; font-size: 1rem; margin-bottom: 10px; }
.review-text { font-size: .93rem; margin-bottom: 14px; position: relative; z-index: 1; }
.review-name { font-weight: 700; font-size: .9rem; }
.review-meta { font-size: .78rem; color: var(--color-muted); margin-top: 2px; }

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1 { font-size: max(1.35rem, 5.5vw); }
  .hero .hero-summary { font-size: 1rem; }
  .hero .btn-cta { display: block; width: 100%; text-align: center; box-sizing: border-box; }
  .stat-grid { gap: 4px; }
  .stat-number { font-size: 1.5rem; }
  .casino-card { padding: 24px 16px; }
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 360px; }
  .review-grid { grid-template-columns: 1fr; }
}

/* ── Signal Widget ──────────────────────────────────────── */
.signal-widget {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.signal-indicator { margin-bottom: 20px; }
.signal-circle {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: #2a2a4a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  transition: background .3s ease, opacity .3s ease;
  box-shadow: 0 0 0 12px rgba(255,255,255,.05), 0 0 0 24px rgba(255,255,255,.025);
}
.signal-icon { font-size: 2.5rem; line-height: 1; display: block; margin-bottom: 6px; }
.signal-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .06em;
  display: block;
}
.signal-status {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 12px;
  min-height: 2.8em;
  padding: 0 12px;
  line-height: 1.4;
}
.signal-countdown {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.signal-countdown span { font-weight: 700; color: #FFD700; }
.signal-history {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.history-label { font-size: .75rem; color: rgba(255,255,255,.45); }
.history-dots { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.history-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  transition: transform .2s;
}
.signal-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.btn-activate {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  width: 100%;
  animation: pulse-cta 2s ease-in-out infinite;
  transition: transform .15s, filter .15s;
}
.btn-activate:hover { transform: scale(1.03); filter: brightness(1.1); }
.signal-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.signal-cta p { font-size: .88rem; color: rgba(255,255,255,.72); margin-bottom: 12px; }

/* ── Demo notice (homepage after iframe) ─────────────────── */
.demo-notice {
  background: #fff5f5;
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 20px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.demo-notice p { margin: 0; font-size: .92rem; }
.btn-sinais {
  display: inline-block;
  background: var(--color-accent);
  color: #fff !important;
  font-family: var(--font-title);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  white-space: nowrap;
  font-size: .9rem;
  transition: transform .15s, filter .15s;
}
.btn-sinais:hover { transform: scale(1.03); filter: brightness(1.1); }

/* ── Review header / avatar ──────────────────────────────── */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-header-info { flex: 1; min-width: 120px; }
.review-header-info strong { display: block; font-size: .92rem; }
.review-header-info span { font-size: .76rem; color: var(--color-muted); }
.stars { color: #FFD700; font-size: 1rem; margin-left: auto; }

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-nav, .btn-cta, .casino-card { display: none; }
}

.signal-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.signal-legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid transparent;
}
.signal-legend-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.signal-legend-item span {
  font-size: 12px;
  opacity: 0.8;
}
.legend-icon { font-size: 22px; min-width: 28px; text-align: center; }

.signal-legend-idle {
  background: #f9f9fc;
  border-color: #e0e0e8;
  color: #555;
}
.signal-legend-roxa {
  background: #f5f0ff;
  border-color: #8b5cf6;
  color: #5b21b6;
}
.signal-legend-rosa {
  background: #fff0f7;
  border-color: #ec4899;
  color: #9d174d;
}

/* ── Image placeholders (remove when real images are ready) ─ */
.img-placeholder {
  background: #FFE600;
  border: 2px dashed #cc9900;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin: 20px 0;
  text-align: center;
  font-family: monospace;
  color: #333;
}
.img-placeholder .ph-icon     { font-size: 32px; margin-bottom: 8px; }
.img-placeholder .ph-title    { font-size: 14px; font-weight: bold; margin-bottom: 4px; }
.img-placeholder .ph-desc     { font-size: 12px; color: #666; max-width: 400px; }
.img-placeholder .ph-size     { font-size: 11px; color: #999; margin-top: 6px; }
.img-placeholder .ph-filename { font-size: 11px; color: #cc6600; margin-top: 4px; font-style: italic; }

/* ── Author box ──────────────────────────────────────────── */
.author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 20px;
  padding: 12px 16px;
  background: #f9f9fc;
  border-radius: 10px;
  border: 1px solid #e8e8f0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  display: block;
}

.author-name a {
  color: #1a1a2e;
  text-decoration: none;
}

.author-name a:hover {
  color: #E63946;
  text-decoration: underline;
}

.author-meta {
  font-size: 12px;
  color: #888;
  display: block;
}

@media (max-width: 480px) {
  .author-box {
    padding: 10px 12px;
    gap: 10px;
  }
  .author-name { font-size: 13px; }
  .author-meta { font-size: 11px; }
}

/* ── Mid-page CTA block ──────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  color: #fff;
  margin: 2.5rem 0;
}
.cta-block h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: #fff;
}
.cta-block p  { margin: 0 0 18px; color: rgba(255,255,255,.8); font-size: .95rem; }
.cta-block small { display: block; margin-top: 12px; font-size: .72rem; color: rgba(255,255,255,.45); }

/* ── Sticky mobile CTA ───────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: #E63946;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 999;
  padding: 0 16px;
}
.sticky-btn {
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  flex: 1;
  text-align: center;
}
.sticky-age {
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
}
.sticky-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ── Site images ────────────────────────────────────────────────────────── */
.img-site {
  border-radius: 12px;
  margin: 16px auto;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: transform 0.2s;
}
.img-site:hover { transform: scale(1.01); }

.img-horizontal {
  width: 100%;
  max-width: 680px;
  max-height: 380px;
  object-fit: cover;
  display: block;
  margin: 16px auto;
}
.img-vertical {
  max-width: 320px;
  width: 100%;
  display: block;
  margin: 16px auto;
}
.img-square {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50% !important;
  object-fit: cover;
}

/* All img without class also constrained */
article img, .content img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
  margin: 12px auto;
}



/* ── Figure captions ────────────────────────────────────────────────────── */
.img-figure { margin: 20px 0; }
.img-caption {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 6px;
  font-style: italic;
}

.signal-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.signal-legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid transparent;
}
.signal-legend-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.signal-legend-item span {
  font-size: 12px;
  opacity: 0.8;
}
.legend-icon { font-size: 22px; min-width: 28px; text-align: center; }

.signal-legend-idle {
  background: #f9f9fc;
  border-color: #e0e0e8;
  color: #555;
}
.signal-legend-roxa {
  background: #f5f0ff;
  border-color: #8b5cf6;
  color: #5b21b6;
}
.signal-legend-rosa {
  background: #fff0f7;
  border-color: #ec4899;
  color: #9d174d;
}

/* ── Image placeholders (shown when real image not yet available) ────────── */
.img-ph {
  background: #FFE600;
  border: 2px dashed #cc9900;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
  text-align: center;
  font-family: monospace;
  color: #333;
  line-height: 1.6;
}
.img-ph b    { font-size: 14px; display: block; margin-bottom: 4px; }
.img-ph span { font-size: 12px; color: #555; display: block; }
.img-ph code { font-size: 11px; color: #cc6600; display: block; margin-top: 4px; }

/* ── Logo images ─────────────────────────────────────────────────────────── */
.site-logo img {
  height: 44px;
  width: auto;
  display: block;
  vertical-align: middle;
}
.casino-logo-img {
  display: block;
  margin: 0 auto 12px;
  max-width: 100%;
}

/* ── Evaluation grid (sobre page) ───────────────────────────────────────── */
.evaluation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.eval-item {
  background: #f9f9fc;
  border: 1px solid #e8e8f0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.eval-icon { font-size: 24px; }
.eval-item strong { font-size: 14px; color: #1a1a2e; }
.eval-item span { font-size: 12px; color: #666; line-height: 1.5; }

/* ── Warning box ─────────────────────────────────────────────────────────── */
.warning-box {
  background: #fffbea;
  border-left: 4px solid #f4a20a;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin-block: 1.5rem;
}
.warning-box p { margin: 0; font-size: .93rem; line-height: 1.65; color: #5a4100; }
.warning-box strong { color: #b35a00; }

/* ── Affiliate disclosure (footer) ──────────────────────────────────────── */
.affiliate-disclosure {
  background: #f4f4f8;
  border-top: 1px solid #e0e0e8;
  padding: 12px 20px;
  margin-top: 16px;
  border-radius: 0 0 8px 8px;
}
.affiliate-disclosure p {
  font-size: 11px;
  color: #888;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}
.affiliate-disclosure strong {
  color: #666;
}
