:root {
  --bg: #0a0a0b;
  --bg-alt: #131316;
  --card: #1a1a1e;
  --border: #2a2a2f;
  --text: #f5f5f5;
  --text-dim: #a3a3ab;
  --accent: #e0263b;
  --accent-dark: #a91b2b;
  --white: #ffffff;
  --radius: 14px;
  --max-width: 1140px;
  --font-display: 'Anton', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent); transform: skewX(-20deg); transition: left 0.55s ease; pointer-events: none; }
.btn:hover::after { left: 130%; }
@media (prefers-reduced-motion: reduce) { .btn::after { display: none; } }
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(224, 38, 59, 0.6);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--text-dim); transform: translateY(-2px); }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--nav { display: none; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__img { width: 42px; height: 42px; flex-shrink: 0; filter: invert(1); }
.logo__img--sm { width: 30px; height: 30px; }
.logo__img--xl { width: 220px; height: 220px; }
.logo__text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  line-height: 1.05;
  letter-spacing: 0.03em;
}
.nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dim);
  flex: 1;
  justify-content: center;
}
.nav a { position: relative; padding: 4px 0; transition: color 0.2s ease; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--accent); border-radius: 2px; transition: right 0.25s ease; }
.nav a:hover { color: var(--white); }
.nav a.is-active { color: var(--white); }
.nav a.is-active::after { right: 0; }
.nav__auth { display: inline-flex; gap: 28px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.45) 0%, rgba(10,10,11,0.8) 60%, var(--bg) 100%),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(224, 38, 59, 0.28), transparent 70%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 40px),
    url('assets/WhatsApp Image 2026-09-09 at 21.11.41.jpeg') center 15% / cover no-repeat;
  z-index: 0;
}
.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 15%), rgba(224,38,59,0.2), transparent 70%);
}
.hero__content { position: relative; z-index: 1; }
.hero__burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  fill: rgba(224, 38, 59, 0.07);
  z-index: 0;
  pointer-events: none;
}
.hero__glove {
  position: absolute;
  width: 130px;
  height: 130px;
  fill: rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
}
.hero__glove--left { top: 18%; left: 4%; transform: rotate(-18deg); }
.hero__glove--right { bottom: 12%; right: 5%; transform: scaleX(-1) rotate(-12deg); }
@media (max-width: 860px) {
  .hero__glove { display: none; }
  .hero__burst { width: 600px; height: 600px; }
}
.hero__content > * { opacity: 0; transform: translateY(18px); animation: heroIn 0.8s cubic-bezier(.16,.84,.44,1) forwards; }
.hero__content .eyebrow { animation-delay: 0.05s; }
.hero__content h1 { animation-delay: 0.18s; }
.hero__content .hero__subtitle { animation-delay: 0.34s; }
.hero__content .hero__actions { animation-delay: 0.5s; }
.hero__content .hero__stats { animation-delay: 0.62s; }
.hero__scrollcue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 24px; height: 38px; border: 2px solid var(--text-dim); border-radius: 14px; z-index: 1; opacity: 0.7; }
.hero__scrollcue::before { content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: var(--accent); border-radius: 2px; transform: translateX(-50%); animation: scrollCue 1.6s ease infinite; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@keyframes scrollCue { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 20px; } 100% { opacity: 0; top: 6px; } }
@media (prefers-reduced-motion: reduce) {
  .hero__content > *, .hero__scrollcue::before { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.16,.84,.44,1), transform 0.7s cubic-bezier(.16,.84,.44,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }
.eyebrow {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(224, 38, 59, 0.15);
  color: #ff5c6c;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.text-accent { color: var(--accent); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero__stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}
.hero__stats span {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Section shared ---------- */
section { padding: 90px 0; }
.section-eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

/* ---------- Mural (teaser na home) ---------- */
.home-mural { text-align: center; padding-bottom: 60px; }
.home-mural h2 { margin-bottom: 28px; }
.home-mural .week-carousel { justify-content: center; }

/* ---------- Ranking (teaser na home) ---------- */
.home-ranking { text-align: center; padding-bottom: 60px; background: var(--bg-alt); }
.home-ranking h2 { margin-bottom: 10px; }
.home-ranking__subtitle { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 24px; }
.home-ranking .ranking-list { text-align: left; max-width: 640px; margin: 0 auto; }

/* ---------- Modalidades ---------- */
.modalidades { background: var(--bg-alt); text-align: center; }
.modalidades h2 { margin-bottom: 48px; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}
.card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .35s ease, border-color .3s ease, box-shadow .35s ease;
}
.cards.is-visible .card { opacity: 1; transform: none; }
.cards.is-visible .card:nth-child(1) { transition-delay: .05s; }
.cards.is-visible .card:nth-child(2) { transition-delay: .15s; }
.cards.is-visible .card:nth-child(3) { transition-delay: .25s; }
.card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(224,38,59,0.12), transparent); transform: translateX(-120%); transition: transform .6s ease; pointer-events: none; }
.card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 16px 40px -20px rgba(224,38,59,0.4); }
.card:hover::before { transform: translateX(120%); }
.card__icon { font-size: 2.4rem; margin-bottom: 16px; display: inline-block; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.card:hover .card__icon { transform: scale(1.18) rotate(-6deg); }
.card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; letter-spacing: 0.02em; }
.card p { color: var(--text-dim); font-size: 0.95rem; }
@media (prefers-reduced-motion: reduce) { .card, .card::before, .card__icon { transition: none; opacity: 1; transform: none; } }

/* ---------- Sobre ---------- */
.sobre__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.sobre__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.sobre__logo { width: 100%; max-width: 520px; filter: invert(1); }
.sobre__text p { color: var(--text-dim); margin-bottom: 20px; }
.check-list { margin-bottom: 28px; }
.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ---------- Horarios ---------- */
.horarios { background: var(--bg-alt); }
.placeholder-note {
  color: #ffb347;
  background: rgba(255, 179, 71, 0.1);
  border: 1px solid rgba(255, 179, 71, 0.3);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  display: inline-block;
  margin-bottom: 28px;
}
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.schedule { width: 100%; border-collapse: collapse; min-width: 640px; }
.schedule th, .schedule td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.schedule th {
  background: var(--card);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}
.schedule td:first-child { text-align: left; font-weight: 700; }
.schedule tbody tr:last-child td { border-bottom: none; }
.schedule tbody tr:hover { background: rgba(224,38,59,0.06); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent));
  text-align: center;
}
.cta-banner__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 640px; }
.cta-banner .btn--primary { background: var(--white); color: var(--accent-dark); box-shadow: none; }
.cta-banner .btn--primary:hover { background: #f2f2f2; }

/* ---------- Localizacao ---------- */
.localizacao__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.localizacao address { font-style: normal; color: var(--text-dim); margin: 20px 0 20px; line-height: 1.8; font-size: 1.1rem; }
.localizacao__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.map-embed {
  width: 100%;
  height: 320px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}

/* ---------- Contact bar ---------- */
.contact-bar {
  display: block;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.contact-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding: 10px 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.contact-bar__whats { color: #6de08a; font-weight: 600; }
.contact-bar:hover .contact-bar__whats { color: #8ef2a5; }

/* ---------- Footer ---------- */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.footer__links { display: flex; gap: 24px; font-weight: 600; color: var(--text-dim); }
.footer__links a:hover { color: var(--white); }
.footer__copy { width: 100%; text-align: center; color: var(--text-dim); font-size: 0.82rem; margin-top: 10px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.5);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .sobre__grid, .localizacao__grid { grid-template-columns: 1fr; }
  .sobre__media { order: -1; }
  .badge-xl { width: 160px; height: 160px; font-size: 4.5rem; }
}

@media (max-width: 1040px) {
  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; }
  .btn--nav { display: none; }
  .burger { display: flex; }
  .header__inner { flex-wrap: wrap; }
}

@media (min-width: 1041px) {
  .btn--nav { display: inline-flex; }
}
