/* ============================================================
   ESTILOS GERAIS
   Reset, tipografia, estrutura básica e seções principais.
============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

section {
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-deep);
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: none;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-deep);
  display: inline-block;
}

.btn {
  font-family: var(--font-mono);
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px -8px rgba(238, 166, 44, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(238, 166, 44, 0.7);
}

.btn-outline {
  border-color: rgba(230, 230, 230, 0.55);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(230, 230, 230, 0.1);
  transform: translateY(-2px);
}

.section {
  padding: 100px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 16px;
}

.section-head p {
  font-size: 17px;
  color: #3b4560;
  margin-top: 14px;
}

.light-section {
  background: var(--navy-deep);
  color: var(--white);
}

.light-section .section-head h2 {
  color: var(--white);
}

.light-section .section-head p {
  color: var(--muted);
}


/* ---------- LOGO ---------- */

.logo {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo b {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   HERO
============================================================ */

.hero {
  background:
    radial-gradient(
      ellipse 900px 500px at 15% -10%,
      rgba(32, 42, 130, 0.55),
      transparent 60%
    ),
    linear-gradient(180deg, var(--navy-deep) 0%, #011a3d 100%);
  color: var(--white);
  padding: 96px 0 90px;
  overflow: hidden;
}

.pitch-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 54px);
  margin: 18px 0 22px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
}

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

.hero-note {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ============================================================
   PLACAR
============================================================ */

.scoreboard {
  background: linear-gradient(160deg, var(--navy-mid), #141c63);
  border: 1px solid rgba(230, 230, 230, 0.15);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: 0 30px 60px -20px rgba(1, 10, 30, 0.7);
}

.scoreboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  text-transform: none;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(230, 230, 230, 0.25);
}

.scoreboard-score {
  text-align: center;
  padding: 26px 0 8px;
}

.scoreboard-score .num {
  font-family: var(--font-mono);
  font-size: 82px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.scoreboard-score .lbl {
  font-family: var(--font-mono);
  text-transform: none;
  letter-spacing: 0.18em;
  font-size: 12.5px;
  color: var(--white);
  margin-top: 6px;
}

.scoreboard-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.scoreboard-grid .cell {
  background: rgba(230, 230, 230, 0.06);
  border: 1px solid rgba(230, 230, 230, 0.12);
  border-radius: 8px;
  text-align: center;
  padding: 10px 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.05em;
}

.scoreboard-grid .cell b {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 700;
}

/* ============================================================
   PROVA SOCIAL
   Mantido do CSS original. A marcação correspondente não existe
   no HTML fornecido, portanto essas regras não são utilizadas.
============================================================ */

.stats-strip {
  background: var(--navy-deep);
  padding: 0 0 64px;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(230, 230, 230, 0.12);
  padding-top: 40px;
}

.stat-card {
  text-align: center;
  padding: 8px 10px;
}

.stat-card .n {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
}

.stat-card .t {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 6px;
}


/* ============================================================
   REVEAL ON SCROLL
   O JavaScript adiciona .is-visible quando o elemento entra
   na tela. O estado inicial fica invisível e deslocado alguns
   pixels para baixo.
============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ANIMAÇÕES AVANÇADAS — CLUBE 900+
   Mantém os efeitos leves, performáticos e compatíveis com mobile.
============================================================ */

:root {
  --ease-premium: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-spring: cubic-bezier(0.22, 1.18, 0.36, 1);
}

/* ---------- HERO ---------- */

.hero {
  overflow: hidden;
  isolation: isolate;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.pitch-lines {
  transform: translate3d(0, var(--pitch-shift, 0px), 0) scale(1.01);
  transition: transform 0.25s linear;
  will-change: transform;
  opacity: 0.72;
}

.hero-content-animated > * {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  animation: heroRise 0.75s var(--ease-premium) forwards;
}

.hero-content-animated > *:nth-child(1) { animation-delay: 0.08s; }
.hero-content-animated > *:nth-child(2) { animation-delay: 0.18s; }
.hero-content-animated > *:nth-child(3) { animation-delay: 0.30s; }
.hero-content-animated > *:nth-child(4) { animation-delay: 0.42s; }
.hero-content-animated > *:nth-child(5) { animation-delay: 0.54s; }

.hero-scoreboard-animated {
  opacity: 0;
  transform: translate3d(34px, 0, 0) scale(0.97);
  animation: scoreboardIn 0.95s var(--ease-premium) 0.28s forwards;
}

.hero-pitch-animated {
  opacity: 0;
  animation: pitchReveal 1.2s ease-out 0.05s forwards;
}

.scoreboard-score .num {
  transform: scale(0.94);
  transition: transform 0.35s var(--ease-spring);
}

.scoreboard-score .num.score-complete {
  animation: scoreImpact 0.55s var(--ease-spring);
}

.scoreboard-grid .cell {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.45s var(--ease-premium),
    transform 0.45s var(--ease-spring),
    border-color 0.25s ease,
    background 0.25s ease;
}

.scoreboard-grid .cell.is-scored {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: var(--cell-delay, 0s);
}

.scoreboard-grid .cell.is-scored:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(230, 181, 68, 0.55);
  background: rgba(230, 181, 68, 0.10);
}

/* ---------- BENEFÍCIOS ---------- */

.benefit-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-premium),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-premium);
}

.benefit-card:hover {
  border-color: rgba(1, 37, 87, 0.16);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-3px) scale(1.06) rotate(-2deg);
  box-shadow: 0 10px 24px -12px rgba(1, 37, 87, 0.55);
}

.benefit-card:hover .benefit-icon svg {
  animation: iconPulse 0.55s var(--ease-spring);
}

/* ---------- ESCALAÇÃO ---------- */

.pitch {
  perspective: 900px;
}

.pitch::before,
.pitch::after {
  transition: opacity 0.5s ease, transform 0.6s var(--ease-premium);
}

.pitch:hover::before {
  opacity: 0.55;
}

.pitch:hover::after {
  transform: translate(-50%, -50%) scale(1.04);
}

.pos {
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s ease,
    filter 0.35s ease,
    opacity 0.3s ease;
}

.pos.is-lineup-visible {
  animation: playerEnter 0.7s var(--ease-spring) var(--player-delay, 0s) forwards;
}

.pos:hover,
.pos:focus-visible,
.pos.is-active {
  z-index: 5;
  filter: brightness(1.08);
  box-shadow: 0 0 0 8px rgba(230, 181, 68, 0.12), 0 14px 30px -8px rgba(0, 0, 0, 0.65);
  outline: none;
}

.pos:hover,
.pos:focus-visible,
.pos.is-active {
  transform: translate(-50%, -50%) scale(1.16);
}

.pos span {
  top: calc(100% + 10px);
  left: 50%;
  width: max-content;
  max-width: 190px;
  padding: 7px 9px;
  border-radius: 7px;
  background: rgba(1, 25, 62, 0.94);
  border: 1px solid rgba(230, 181, 68, 0.35);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 500;
  text-align: center;
  transform: translate(-50%, 4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-premium);
}

.pos:hover span,
.pos:focus-visible span,
.pos.is-active span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.lineup-item {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-premium),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.lineup-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-premium);
}

.lineup-item:hover,
.lineup-item.is-active {
  transform: translateX(7px);
  background: rgba(230, 181, 68, 0.09);
  border-color: rgba(230, 181, 68, 0.28);
  box-shadow: 0 16px 34px -24px rgba(0, 0, 0, 0.8);
}

.lineup-item:hover::before,
.lineup-item.is-active::before {
  transform: scaleY(1);
}

/* ---------- PROFESSOR ---------- */

.professor-figma-visual {
  position: relative;
  overflow: visible;
}

.floating-square-top {
  animation: floatTop 5s ease-in-out infinite;
}

.floating-square-bottom {
  animation: floatBottom 6s ease-in-out 0.4s infinite;
}

.professor-figma-visual .professor-photo-img {
  transition: transform 0.8s var(--ease-premium), filter 0.8s ease;
}

.professor-figma-visual:hover .professor-photo-img {
  transform: scale(1.015);
  filter: saturate(1.04);
}

/* ---------- BOTÕES ---------- */

.btn {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  overflow: hidden;
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
  transition:
    transform 0.22s var(--ease-spring),
    box-shadow 0.3s ease,
    background 0.3s ease;
  will-change: transform;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.btn:hover::after,
.btn:focus-visible::after {
  left: 135%;
}

.btn-primary:hover {
  box-shadow: 0 16px 30px -16px rgba(239, 241, 244, 0.55);
}

/* ---------- OFERTA ---------- */

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(230, 181, 68, 0.18);
  pointer-events: none;
  animation: offerGlow 3.8s ease-in-out infinite;
}

.offer-list li {
  opacity: 0;
  transform: translateX(-10px);
}

.offer-motion-ready .offer-list li {
  animation: offerItemIn 0.55s var(--ease-premium) var(--offer-delay, 0s) forwards;
}

.offer-button-ready {
  animation: ctaBreath 2.8s ease-in-out 1.2s infinite;
}

/* ---------- REDUCED MOTION ---------- */

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

.reduce-motion .offer-list li {
  opacity: 1;
  transform: none;
}

/* ---------- KEYFRAMES ---------- */

@keyframes heroRise {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes scoreboardIn {
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes pitchReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 0.72; transform: scale(1.01); }
}

@keyframes scoreImpact {
  0% { transform: scale(1); }
  45% { transform: scale(1.10); }
  100% { transform: scale(1); }
}

@keyframes playerEnter {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.45); }
  70% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes floatTop {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(7px, -10px, 0) rotate(2deg); }
}

@keyframes floatBottom {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-8px, 8px, 0) rotate(-2deg); }
}

@keyframes offerGlow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes offerItemIn {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes ctaBreath {
  0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(230, 181, 68, 0); }
  84% { box-shadow: 0 0 0 7px rgba(230, 181, 68, 0.10); }
}

@media (max-width: 760px) {
  .pitch-lines {
    opacity: 0.38;
  }

  .hero-scoreboard-animated {
    transform: translate3d(0, 24px, 0) scale(0.98);
  }

  .btn {
    transform: none;
  }

  .btn::after {
    display: none;
  }

  .lineup-item:hover,
  .lineup-item.is-active {
    transform: none;
  }
}
.marquee {
  position: relative;
  z-index: 10;
}