/* ===========================
   AMONG SUBLIME — STYLESHEET
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap');

/* ── VARIABLES ── */
:root {
  --cosmic-deep:   #04010f;
  --cosmic-dark:   #080320;
  --nebula-purple: #5b2d8e;
  --nebula-violet: #7c3aed;
  --nebula-blue:   #2563eb;
  --star-blue:     #60a5fa;
  --star-white:    #e2d9f3;
  --glow-purple:   rgba(124, 58, 237, 0.6);
  --glow-blue:     rgba(37, 99, 235, 0.5);
  --accent:        #a78bfa;
  --text-main:     #e2d9f3;
  --text-muted:    #9ca3af;
  --card-bg:       rgba(91, 45, 142, 0.12);
  --card-border:   rgba(167, 139, 250, 0.2);
  --font-display:  'Orbitron', monospace;
  --font-body:     'Rajdhani', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cosmic-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ════════════════════════════════════
   LOADING SCREEN
════════════════════════════════════ */
#loadingScreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cosmic-deep);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loadingScreen.done {
  opacity: 0;
  visibility: hidden;
}
#loadCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.load-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.load-logo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.load-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  animation: spin-ring 3s linear infinite;
}
.load-ring1 {
  width: 140px; height: 140px;
  border-top-color: var(--accent);
  border-right-color: rgba(167,139,250,0.2);
  animation-duration: 2s;
}
.load-ring2 {
  width: 116px; height: 116px;
  border-bottom-color: var(--nebula-blue);
  border-left-color: rgba(37,99,235,0.2);
  animation-duration: 3s;
  animation-direction: reverse;
}
.load-ring3 {
  width: 92px; height: 92px;
  border-top-color: rgba(124,58,237,0.5);
  border-right-color: transparent;
  animation-duration: 4s;
}
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.load-logo-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,45,142,0.8), rgba(37,99,235,0.5));
  border: 2px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 30px var(--glow-purple);
}
.load-logo-img { width: 100%; height: 100%; object-fit: cover; }
.load-logo-fallback {
  font-size: 2rem;
  color: var(--accent);
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.load-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--text-main);
}
.load-bar-track {
  width: 200px;
  height: 3px;
  background: rgba(167,139,250,0.15);
  border-radius: 100px;
  overflow: hidden;
}
.load-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--nebula-violet), var(--star-blue));
  border-radius: 100px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--glow-purple);
}
.load-status {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  min-height: 1.2em;
}

/* ════════════════════════════════════
   REDIRECT SCREEN
════════════════════════════════════ */
#redirectScreen {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cosmic-deep);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#redirectScreen.active {
  opacity: 1;
  visibility: visible;
}
#redirectCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.redir-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 20px;
}
.redir-logo-wrap {
  position: relative;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.redir-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spin-ring 2s linear infinite;
}
.rr1 { width: 120px; height: 120px; border-top-color: var(--accent); animation-duration: 2s; }
.rr2 { width: 96px; height: 96px; border-bottom-color: var(--nebula-blue); animation-duration: 3s; animation-direction: reverse; }
.redir-logo-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,45,142,0.9), rgba(37,99,235,0.6));
  border: 2px solid var(--card-border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 28px var(--glow-purple);
}
.redir-logo-img { width: 100%; height: 100%; object-fit: cover; }
.redir-logo-fallback { font-size: 1.8rem; color: var(--accent); }
.redir-tag {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--accent);
}
.redir-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
}
.redir-desc { color: var(--text-muted); font-size: 0.95rem; }
/* SVG countdown ring */
.redir-countdown-ring {
  position: relative;
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
}
.redir-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.redir-circle-bg {
  fill: none;
  stroke: rgba(167,139,250,0.12);
  stroke-width: 6;
}
.redir-circle-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 6px var(--glow-purple));
  transition: stroke-dashoffset 1s linear;
}
.redir-num {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}
.redir-manual { font-size: 0.85rem; color: var(--text-muted); }
.redir-manual a { color: var(--accent); border-bottom: 1px solid var(--card-border); }

/* ── GALAXY CANVAS ── */
#galaxyCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── CUSTOM CURSOR ── */
#cursorTrail {
  position: fixed;
  width: 18px; height: 18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(4,1,15,0.88);
  backdrop-filter: blur(18px);
  padding: 12px 5%;
  border-bottom: 1px solid var(--card-border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 900; font-size: 1rem; letter-spacing: 2px;
}
.nav-logo-img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--card-border);
  box-shadow: 0 0 10px var(--glow-purple);
}
.accent { color: var(--accent); }
.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 2px;
}
.nav-links a { opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-cta {
  background: linear-gradient(135deg, var(--nebula-violet), var(--nebula-blue));
  padding: 8px 20px; border-radius: 4px;
  opacity: 1 !important; color: #fff !important;
  box-shadow: 0 0 18px var(--glow-purple);
  transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-cta:hover { box-shadow: 0 0 32px var(--glow-purple); transform: translateY(-2px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--accent);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  position: relative; z-index: 2;
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }

/* LOGO FLUTUANTE */
.hero-logo-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: float-logo 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float-logo {
  0%,100% { transform: translate(-50%, -50%) translateY(0px); }
  50%      { transform: translate(-50%, -50%) translateY(-22px); }
}
.hlf-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  animation: spin-ring 4s linear infinite;
}
.hlf-r1 {
  width: 200px; height: 200px;
  border-top-color: rgba(167,139,250,0.5);
  border-right-color: rgba(167,139,250,0.1);
  animation-duration: 6s;
}
.hlf-r2 {
  width: 168px; height: 168px;
  border-bottom-color: rgba(37,99,235,0.6);
  border-left-color: rgba(37,99,235,0.1);
  animation-duration: 9s;
  animation-direction: reverse;
}
.hlf-r3 {
  width: 136px; height: 136px;
  border-top-color: rgba(124,58,237,0.4);
  animation-duration: 12s;
}
.hlf-glow {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.25), transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.3); opacity: 1; }
}
.hlf-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,45,142,0.85), rgba(37,99,235,0.6));
  border: 2px solid rgba(167,139,250,0.35);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--glow-purple), 0 0 80px rgba(37,99,235,0.2), inset 0 0 20px rgba(255,255,255,0.05);
}
.hlf-img { width: 100%; height: 100%; object-fit: cover; }
.hlf-fallback {
  font-size: 2.8rem; color: var(--accent);
  display: none; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 140px 5% 80px;
  max-width: 680px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 6px; color: var(--accent);
  margin-bottom: 18px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  display: flex; flex-direction: column;
  margin-bottom: 24px;
}
.title-line { opacity: 0; animation: fadeUp 0.8s forwards; }
.title-line:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(2) { animation-delay: 0.7s; }
.accent-glow {
  color: var(--accent);
  text-shadow: 0 0 40px var(--glow-purple), 0 0 80px rgba(124,58,237,0.3);
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 460px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.hero-btns {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
}

/* ASTRONAUT */
.hero-astronaut {
  position: absolute; right: 8%; bottom: 12%; z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.astronaut-body {
  width: 90px; height: 110px;
  background: linear-gradient(160deg, #a78bfa, #6d28d9);
  border-radius: 40px 40px 30px 30px; position: relative;
  box-shadow: 0 0 40px var(--glow-purple), inset 0 0 20px rgba(255,255,255,0.1);
}
.astro-visor {
  width: 52px; height: 38px;
  background: linear-gradient(135deg, #60a5fa, #1d4ed8);
  border-radius: 50%;
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 20px var(--glow-blue), inset 0 0 12px rgba(255,255,255,0.2);
}
.astro-backpack {
  width: 28px; height: 40px;
  background: linear-gradient(160deg, #7c3aed, #4c1d95);
  border-radius: 6px;
  position: absolute; right: -22px; top: 25px;
  box-shadow: 0 0 12px var(--glow-purple);
}
.astronaut-shadow {
  width: 70px; height: 12px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.5), transparent);
  margin: 12px auto 0; border-radius: 50%;
  animation: shadow-pulse 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-28px) rotate(4deg); }
}
@keyframes shadow-pulse {
  0%,100% { transform: scaleX(1); opacity: 0.5; }
  50%      { transform: scaleX(0.65); opacity: 0.2; }
}

/* SCROLL HINT */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 4; opacity: 0; animation: fadeUp 1s 1.6s forwards;
}
.scroll-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: bounce 1.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--glow-purple);
}
.scroll-label { font-family: var(--font-display); font-size: 0.55rem; letter-spacing: 4px; color: var(--text-muted); }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 2px; font-weight: 700;
  padding: 14px 32px; border-radius: 4px; border: none;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--nebula-violet) 0%, var(--nebula-blue) 100%);
  color: #fff;
  box-shadow: 0 0 24px var(--glow-purple), 0 0 48px rgba(37,99,235,0.2);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 40px var(--glow-purple), 0 0 80px var(--glow-blue); }
.btn-ghost {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--card-border);
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(167,139,250,0.06); }
.btn-xl { padding: 18px 44px; font-size: 0.85rem; }
.btn-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.pulse-btn { animation: pulse-glow 2.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 24px var(--glow-purple), 0 0 48px rgba(37,99,235,0.2); }
  50%      { box-shadow: 0 0 50px var(--glow-purple), 0 0 100px var(--glow-blue); }
}

/* ── SECTION SHARED ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-family: var(--font-display); font-size: 0.65rem;
  letter-spacing: 5px; color: var(--accent);
  display: block; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1;
}

/* ── SOBRE ── */
.sobre { position: relative; z-index: 2; padding: 120px 0; }
.sobre::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--card-border));
}
.sobre-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.sobre-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(30px);
}
.sobre-card.visible { animation: fadeUp 0.7s forwards; }
.sobre-card::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(124,58,237,0.08), transparent 60%);
  transition: opacity 0.3s; opacity: 0;
}
.sobre-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 12px 48px rgba(124,58,237,0.2); }
.sobre-card:hover::before { opacity: 1; }
.card-icon { font-size: 2.4rem; margin-bottom: 18px; }
.sobre-card h3 { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; color: var(--accent); }
.sobre-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ── CTA SECTION ── */
.cta-section {
  position: relative; z-index: 2; padding: 140px 0;
  overflow: hidden; text-align: center;
}
.cta-nebula {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,0.18), transparent),
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(37,99,235,0.12), transparent),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(91,45,142,0.12), transparent);
  pointer-events: none;
}
.cta-badge {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.6rem; letter-spacing: 4px;
  padding: 6px 18px; border: 1px solid var(--accent);
  border-radius: 100px; color: var(--accent); margin-bottom: 24px;
  animation: pulse-border 2s ease-in-out infinite;
}
@keyframes pulse-border {
  0%,100% { box-shadow: 0 0 0 0 rgba(167,139,250,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(167,139,250,0); }
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.05;
  margin-bottom: 20px;
}
.cta-desc { color: var(--text-muted); max-width: 480px; margin: 0 auto 48px; font-size: 1.05rem; }
.cta-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 52px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-row {
  display: flex; align-items: baseline; gap: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 900;
  color: var(--accent); line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 900;
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.55rem; letter-spacing: 3px; color: var(--text-muted);
}
.stat-divider { width: 1px; height: 50px; background: var(--card-border); }
.cta-note { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }
.whatsapp-icon { font-size: 1.2rem; }

/* ── FOOTER ── */
.footer {
  position: relative; z-index: 2; padding: 40px 0;
  border-top: 1px solid var(--card-border); text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-display); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.footer-logo-img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1px solid var(--card-border); }
.footer-copy { color: var(--text-muted); font-size: 0.85rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-astronaut { display: none; }
  .hero-logo-float { opacity: 0.25; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0; flex-direction: column;
    padding: 24px; background: rgba(8,3,32,0.97);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--card-border); gap: 24px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .cta-stats { gap: 20px; }
  .stat-divider { display: none; }
  body { cursor: auto; }
  #cursorTrail { display: none; }
  .hero-logo-float { display: none; }
}

/* ════════════════════════════════════
   REGRAS PAGE STYLES
════════════════════════════════════ */
.regras-page { min-height: 100vh; position: relative; z-index: 2; padding: 140px 0 80px; }
.regras-hero { text-align: center; margin-bottom: 80px; }
.regras-hero .section-tag { margin-bottom: 16px; }
.regras-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.05; margin-bottom: 16px;
}
.regras-hero p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.regras-list { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.regra-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px; padding: 28px 32px;
  display: flex; gap: 24px; align-items: flex-start;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  opacity: 0; transform: translateX(-20px);
}
.regra-card.visible { animation: slideIn 0.5s forwards; }
@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}
.regra-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(124,58,237,0.18); transform: translateX(6px); }
.regra-num {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 900;
  color: var(--accent); opacity: 0.5; min-width: 40px; line-height: 1;
}
.regra-body h3 { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 2px; color: var(--text-main); margin-bottom: 8px; }
.regra-body p { color: var(--text-muted); font-size: 0.95rem; }
.regras-back {
  text-align: center; margin-top: 64px;
}
