:root {
  /* Alinhado com /play/ — cassino social azul royal + dourado */
  --bg-deep: #0a1a4a;
  --bg-mid: #142a6e;
  --bg-soft: #1e3a8a;
  --gold: #ffd54f;
  --gold-bright: #ffe066;
  --gold-deep: #b8860b;
  --orange: #ff9800;
  --cyan: #4fc3f7;
  --purple: #7b1fa2;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.88);
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 213, 79, 0.28);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  /* aliases legados usados no restante do arquivo */
  --green-deep: var(--bg-deep);
  --green: var(--bg-mid);
  --green-soft: var(--bg-soft);
  --orange-bright: var(--orange);
  --red-bright: #ff5252;
  --purple-bright: #ab47bc;
  --blue-bright: var(--cyan);
  --cyan-bright: var(--cyan);
  --lime: #00e88a;
  --pink: #ff4081;
  --pink-bright: #ff80ab;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: "Segoe UI", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
body {
  background:
    radial-gradient(900px 480px at 50% -120px, rgba(255, 213, 79, 0.16) 0%, transparent 65%),
    radial-gradient(1100px 700px at 85% 90%, rgba(79, 195, 247, 0.10) 0%, transparent 60%),
    linear-gradient(165deg, #050a26 0%, #0a1a4a 35%, #142a6e 75%, #0a1a4a 100%);
  background-attachment: fixed;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255, 213, 79, 0.08), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(79, 195, 247, 0.06), transparent 50%);
}
img { max-width: 100%; display: block; }
a { color: var(--gold-bright); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

/* Background floating cards */
.bg-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.fx-card {
  position: absolute;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255, 213, 79, 0.08);
  filter: drop-shadow(0 0 14px rgba(255, 213, 79, 0.2));
  animation: float 18s ease-in-out infinite;
}
.fx-card-1 { top: 8%; left: 6%; transform: rotate(-12deg); }
.fx-card-2 { top: 18%; right: 10%; transform: rotate(8deg); animation-delay: -3s; font-size: 3.5rem; color: rgba(79, 195, 247, 0.10); }
.fx-card-3 { bottom: 22%; left: 14%; transform: rotate(15deg); animation-delay: -7s; }
.fx-card-4 { bottom: 12%; right: 20%; transform: rotate(-6deg); animation-delay: -11s; font-size: 3rem; }
.fx-card-5 { top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(20deg); font-size: 6rem; animation-delay: -5s; opacity: 0.4; }
.fx-card-6 { top: 38%; right: 6%; font-size: 2.5rem; animation-delay: -9s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -22px; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(10, 26, 74, 0.97), rgba(10, 26, 74, 0.75));
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.brand-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 6px 18px rgba(255, 213, 79, 0.45);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-weight: 900;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #fff, var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  font-weight: 900;
  padding: 2px 0;
  margin-top: 2px;
  width: max-content;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav a {
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--red-bright));
  transform: scaleX(0);
  transition: transform 0.2s;
}
.site-nav a:not(.nav-cta):hover { color: var(--gold-bright); opacity: 1; }
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1a1a !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(255, 213, 79, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-cta:hover { opacity: 1; transform: translateY(-1px) scale(1.04); }
@keyframes cta-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s;
  position: relative;
}
.btn.big {
  padding: 20px 36px;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #1a1a1a;
  box-shadow:
    0 12px 32px rgba(255, 213, 79, 0.45),
    0 0 0 3px rgba(255, 213, 79, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
  flex-direction: column;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: cta-pulse 2.2s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.btn-primary small {
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.8;
  margin-top: 3px;
  text-shadow: none;
  letter-spacing: 0.06em;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 18px 40px rgba(255, 213, 79, 0.55),
    0 0 0 4px rgba(255, 213, 79, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.btn-ghost {
  background: rgba(30, 58, 138, 0.45);
  color: var(--text);
  border: 1.5px solid var(--card-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 213, 79, 0.12);
  border-color: var(--gold-bright);
  opacity: 1;
}

/* Hero */
main { position: relative; z-index: 1; }
.hero {
  padding: 60px 22px 50px;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 213, 79, 0.12);
  border: 1.5px solid rgba(255, 213, 79, 0.55);
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(255, 234, 0, 0.3);
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  line-height: 1.07;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.accent {
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 213, 79, 0.45));
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  align-items: center;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
}
.hero-bullets li {
  background: rgba(30, 58, 138, 0.5);
  border: 1px solid var(--card-border);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ===== Hero ART — Mascote (mesmo padrão do /play/) ===== */
.hero-art {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(255, 213, 79, 0.15), transparent 55%),
    linear-gradient(160deg, rgba(20, 42, 110, 0.6), rgba(10, 20, 60, 0.8));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
}
.hero-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 55% 45%, rgba(255, 213, 79, 0.25), transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(79, 195, 247, 0.15), transparent 50%);
  filter: blur(12px);
  pointer-events: none;
  animation: heroGlowLand 7s ease-in-out infinite;
}
@keyframes heroGlowLand {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.hero-mascot {
  position: absolute;
  inset: 0;
  background: url("play/mascote.png?v=4") center bottom / contain no-repeat;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
  animation: mascotBobLand 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes mascotBobLand {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-logo-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 213, 79, 0.4);
  z-index: 4;
}
.floater {
  position: absolute;
  z-index: 3;
  font-size: 2rem;
  font-weight: 900;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  animation: floater 7s ease-in-out infinite;
  opacity: 0.85;
}
.f-club    { top: 8%;  left: 10%; color: #fff; animation-delay: -1s; }
.f-heart   { top: 10%; right: 8%; color: #ff5252; animation-delay: -3s; }
.f-spade   { bottom: 28%; left: 8%; color: #fff; animation-delay: -5s; }
.f-diamond { bottom: 24%; right: 12%; color: #ff5252; animation-delay: -2s; }
@keyframes floater {
  0%, 100% { translate: 0 0; opacity: 0.85; }
  50% { translate: 0 -10px; opacity: 1; }
}

/* Sections */
section {
  padding: 60px 22px;
  max-width: 1180px;
  margin: 0 auto;
}
section h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin: 0 0 8px;
  text-align: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 12px rgba(255, 213, 79, 0.2));
  letter-spacing: -0.005em;
}
.section-sub {
  text-align: center;
  color: var(--text-soft);
  margin: 0 0 34px;
  font-size: 1rem;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.feature {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
  overflow: hidden;
  isolation: isolate;
}
.feature::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    rgba(255, 234, 0, 0.35) 60deg,
    transparent 120deg,
    transparent 240deg,
    rgba(255, 23, 68, 0.35) 300deg,
    transparent 360deg);
  opacity: 0;
  transition: opacity 0.3s;
  animation: feature-rotate 6s linear infinite;
  z-index: -1;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 1.5px;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(160deg, rgba(20, 42, 110, 0.95), rgba(10, 20, 60, 0.95));
  z-index: -1;
}
.feature:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 234, 0, 0.5);
}
.feature:hover::after { opacity: 1; }
@keyframes feature-rotate {
  to { transform: rotate(360deg); }
}
/* Taça (Copinho) — substitui o antigo emoji 🥤 na landing. */
.copo-ic {
  height: 1.05em;
  width: auto;
  vertical-align: -0.18em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}
.feature-ico .copo-ic { height: 2rem; }
.fx-card .copo-ic { height: 2.4rem; opacity: 0.5; }

.feature-ico {
  font-size: 2rem;
  margin-bottom: 14px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  color: #1a1a1a;
  box-shadow:
    0 8px 18px rgba(255, 111, 0, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.feature:nth-child(2) .feature-ico { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #fff; box-shadow: 0 8px 18px rgba(0, 176, 255, 0.6); }
.feature:nth-child(3) .feature-ico { background: linear-gradient(135deg, var(--red-bright), var(--orange)); color: #fff; box-shadow: 0 8px 18px rgba(255, 23, 68, 0.6); }
.feature:nth-child(4) .feature-ico { background: linear-gradient(135deg, var(--purple-bright), var(--purple)); color: #fff; box-shadow: 0 8px 18px rgba(213, 0, 249, 0.6); }
.feature:nth-child(5) .feature-ico { background: linear-gradient(135deg, var(--lime), var(--green-soft)); color: #1a1a1a; box-shadow: 0 8px 18px rgba(118, 255, 3, 0.55); }
.feature:nth-child(6) .feature-ico { background: linear-gradient(135deg, var(--pink-bright), var(--pink)); color: #fff; box-shadow: 0 8px 18px rgba(255, 64, 129, 0.6); }
.feature:nth-child(7) .feature-ico { background: linear-gradient(135deg, var(--gold-bright), var(--pink)); color: #1a1a1a; box-shadow: 0 8px 18px rgba(255, 64, 129, 0.55); }
.feature:nth-child(8) .feature-ico { background: linear-gradient(135deg, var(--cyan), var(--purple-bright)); color: #fff; box-shadow: 0 8px 18px rgba(213, 0, 249, 0.6); }
.feature h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(255, 234, 0, 0.3);
}
.feature p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.93rem;
}

/* Rules */
.rules { padding: 60px 22px; }
.rules-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(20, 42, 110, 0.65), rgba(10, 20, 60, 0.85));
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--shadow-lg), inset 0 0 40px rgba(255, 213, 79, 0.08);
  overflow: hidden;
}
.rules-head { text-align: center; margin-bottom: 26px; }
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.rule {
  background: rgba(0, 0, 0, 0.4);
  border-left: 4px solid var(--gold-bright);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.18s, background 0.2s;
  box-shadow: -2px 0 16px rgba(255, 234, 0, 0.25);
}
.rule:nth-child(2) { border-left-color: var(--red-bright); box-shadow: -2px 0 16px rgba(255, 23, 68, 0.3); }
.rule:nth-child(3) { border-left-color: var(--purple-bright); box-shadow: -2px 0 16px rgba(213, 0, 249, 0.3); }
.rule:nth-child(4) { border-left-color: var(--cyan); box-shadow: -2px 0 16px rgba(0, 229, 255, 0.3); }
.rule:nth-child(5) { border-left-color: var(--lime); box-shadow: -2px 0 16px rgba(118, 255, 3, 0.3); }
.rule:nth-child(6) { border-left-color: var(--pink); box-shadow: -2px 0 16px rgba(255, 64, 129, 0.3); }
.rule:hover { transform: translateX(5px); background: rgba(0, 0, 0, 0.55); }
.rule strong {
  color: var(--gold-bright);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255, 234, 0, 0.4);
}
.rule:nth-child(2) strong { color: var(--red-bright); text-shadow: 0 0 12px rgba(255, 23, 68, 0.4); }
.rule:nth-child(3) strong { color: var(--purple-bright); text-shadow: 0 0 12px rgba(213, 0, 249, 0.4); }
.rule:nth-child(4) strong { color: var(--cyan); text-shadow: 0 0 12px rgba(0, 229, 255, 0.4); }
.rule:nth-child(5) strong { color: var(--lime); text-shadow: 0 0 12px rgba(118, 255, 3, 0.4); }
.rule:nth-child(6) strong { color: var(--pink-bright); text-shadow: 0 0 12px rgba(255, 64, 129, 0.4); }
.rule span { color: var(--text-soft); font-size: 0.95rem; }

/* How */
.how { text-align: center; }
.steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 800px;
  display: grid;
  gap: 16px;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 234, 0, 0.05), rgba(255, 23, 68, 0.05));
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 0.18s, box-shadow 0.2s;
}
.steps li:hover {
  transform: translateX(6px);
  box-shadow: -4px 0 24px rgba(255, 234, 0, 0.25);
}
.step-num {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--red-bright));
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(255, 23, 68, 0.5), inset 0 2px 0 rgba(255,255,255,0.4);
}
.steps li:nth-child(2) .step-num {
  background: linear-gradient(135deg, var(--purple-bright), var(--cyan));
  color: #fff;
  box-shadow: 0 8px 20px rgba(213, 0, 249, 0.5), inset 0 2px 0 rgba(255,255,255,0.4);
}
.steps li:nth-child(3) .step-num {
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 8px 20px rgba(118, 255, 3, 0.5), inset 0 2px 0 rgba(255,255,255,0.4);
}
.steps strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 2px;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(255, 234, 0, 0.3);
}
.steps p { margin: 0; color: var(--text-soft); font-size: 0.94rem; }
.how-cta { margin-top: 22px; }

/* FAQ */
.faq { max-width: 800px; }
.faq details {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.faq details[open] {
  background: linear-gradient(135deg, rgba(255, 234, 0, 0.1), rgba(255, 23, 68, 0.08));
  border-color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(255, 234, 0, 0.25);
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.8rem;
  color: var(--gold-bright);
  transition: transform 0.25s, color 0.2s;
  font-weight: 400;
  text-shadow: 0 0 14px rgba(255, 234, 0, 0.5);
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  color: var(--red-bright);
  text-shadow: 0 0 14px rgba(255, 23, 68, 0.6);
}
.faq p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--card-border);
  background: linear-gradient(180deg, transparent, rgba(10, 20, 60, 0.85));
  padding: 32px 22px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.footer-inner p { margin: 6px 0 0; }
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-block;
  border: 1.5px solid var(--gold-bright);
  box-shadow: 0 0 14px rgba(255, 234, 0, 0.4);
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-weight: 600; }
.footer-inner small { opacity: 0.7; }
.legal-note {
  flex-basis: 100%;
  max-width: 760px;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-art { min-height: 300px; order: -1; }
  .hero-mascot { background-position: center bottom; }
  .floater { font-size: 1.5rem; }
  .site-nav { gap: 10px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding: 30px 18px 30px; }
  section { padding: 40px 18px; }
}
@media (max-width: 480px) {
  .brand-text { display: none; }
  .hero-bullets { flex-direction: column; gap: 6px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-art { min-height: 260px; }
  .hero-logo-badge { width: 56px; height: 56px; }
  .btn.big { padding: 16px 26px; font-size: 1rem; }
}

/* Reduz movimento se o usuário pedir */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
