/* Grupo Luxus — Copa 2026 (simplificado) */

:root {
  --luxus-blue: #3db4e8;
  --luxus-blue-light: #5ec8f2;
  --luxus-silver: #c8d4e0;
  --luxus-gray: #9aacbc;
  --bg: #0d1510;
  --bg-card: rgba(22, 35, 28, 0.88);
  --br-green: #009c3b;
  --br-green-light: #00e676;
  --br-yellow: #ffdf00;
  --whatsapp: #25d366;
  --border: rgba(255, 255, 255, 0.14);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  font-family: var(--font-body);
  background: var(--bg);
  color: #f0f4f8;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fundo animado comemorativo */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  background: rgba(4, 10, 7, 0.32);
  pointer-events: none;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 9;
  background:
    radial-gradient(
      ellipse 78% 72% at 50% 42%,
      transparent 0%,
      rgba(3, 8, 5, 0.12) 58%,
      rgba(2, 6, 4, 0.55) 82%,
      rgba(0, 0, 0, 0.72) 100%
    );
  pointer-events: none;
}

.page-bg__grass {
  position: absolute;
  inset: 0;
  background: url("../assets/gramado.png") center / cover no-repeat;
  opacity: 0.36;
  mix-blend-mode: soft-light;
}

.page-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg,
      rgba(0, 100, 40, 0.28) 0%,
      rgba(10, 22, 16, 0.78) 35%,
      rgba(12, 24, 18, 0.82) 65%,
      rgba(8, 18, 12, 0.75) 100%);
  background-size: 400% 400%;
  animation: bgShift 8s ease-in-out infinite alternate;
}

.page-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 156, 59, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 223, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridMove 20s linear infinite;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.page-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: glowFloat 8s ease-in-out infinite;
}

.page-bg__glow--green {
  width: 550px; height: 550px;
  top: -120px; left: -120px;
  background: rgba(0, 156, 59, 0.36);
}

.page-bg__glow--green2 {
  width: 400px; height: 400px;
  bottom: 10%; right: -60px;
  background: rgba(0, 200, 83, 0.24);
  animation-delay: -3s;
  animation-duration: 11s;
}

.page-bg__glow--yellow {
  width: 480px; height: 480px;
  top: 25%; right: -100px;
  background: rgba(255, 223, 0, 0.22);
  animation-delay: -2s;
  animation-duration: 9s;
}

.page-bg__glow--blue {
  width: 500px; height: 500px;
  bottom: -80px; left: 20%;
  background: rgba(61, 180, 232, 0.26);
  animation-delay: -5s;
  animation-duration: 10s;
}

.page-bg__floats {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.float-decor {
  position: absolute;
  width: clamp(32px, 4.5vw, 52px);
  height: auto;
  opacity: 0.14;
  animation: floatAsset 18s ease-in-out infinite;
  object-fit: contain;
  pointer-events: none;
}

.float-decor:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; width: clamp(36px, 5vw, 56px); }
.float-decor:nth-child(2) { top: 22%; right: 10%; animation-delay: -3s; }
.float-decor:nth-child(3) { top: 55%; left: 5%; animation-delay: -6s; width: clamp(40px, 5.5vw, 60px); }
.float-decor:nth-child(4) { top: 70%; right: 8%; animation-delay: -9s; }
.float-decor:nth-child(5) { top: 40%; left: 15%; animation-delay: -12s; width: clamp(38px, 5vw, 58px); }
.float-decor:nth-child(6) { top: 85%; left: 40%; animation-delay: -15s; }

.float-decor--trofeu {
  filter: drop-shadow(0 2px 10px rgba(255, 200, 0, 0.35));
}

.float-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  pointer-events: none;
  z-index: 90;
}

.float-layer.is-dragging-active {
  z-index: 200;
}

.float-ball {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(48px, 7vw, 72px);
  height: auto;
  opacity: 0.55;
  object-fit: contain;
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
  padding: 12px;
  margin: -12px;
  box-sizing: content-box;
}

.float-ball.is-dragging {
  cursor: grabbing;
  opacity: 0.95;
  z-index: 9999;
  filter: drop-shadow(0 6px 20px rgba(255, 223, 0, 0.45));
}

.float-ball.is-spinning {
  opacity: 0.9;
}

.float-ball.is-hit {
  filter: drop-shadow(0 0 18px rgba(255, 223, 0, 0.85)) brightness(1.4);
  transition: filter 0.15s ease;
}

.float-ball.is-exploding {
  opacity: 1 !important;
  filter:
    drop-shadow(0 0 32px rgba(255, 255, 255, 1))
    drop-shadow(0 0 48px rgba(255, 223, 0, 0.95))
    brightness(2.2);
  z-index: 9999;
}

.float-ball-burst-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
}

.float-asset--trofeu,
.icon-trofeu {
  filter: drop-shadow(0 2px 10px rgba(255, 200, 0, 0.4));
}

#confetti, #sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  opacity: 0.9;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; filter: brightness(1); }
  100% { background-position: 100% 50%; filter: brightness(1.08); }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  33% { transform: translate(40px, -30px) scale(1.1); opacity: 1; }
  66% { transform: translate(-25px, 20px) scale(0.95); opacity: 0.85; }
}

@keyframes floatAsset {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
  50% { transform: translateY(-30px) rotate(12deg); opacity: 0.2; }
}

.logo-burst-canvas {
  position: absolute;
  inset: -40%;
  width: 180%;
  height: 180%;
  left: -40%;
  top: -40%;
  pointer-events: none;
  z-index: 5;
}

.hero__logo-wrap.logo-bursting .hero__logo {
  animation: logoTrophyBurst 1.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards !important;
}

.hero__logo-wrap.logo-bursting .logo-sparkle {
  animation: trophyGlintBurst 1.5s ease-out forwards;
}

@keyframes logoTrophyBurst {
  0% { transform: scale(1) translateY(0); filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45)); }
  12% { transform: scale(1.12) translateY(-6px); filter: drop-shadow(0 0 40px rgba(255, 223, 0, 0.95)) brightness(1.6); }
  28% { transform: scale(0.88) translateY(2px); filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.9)) brightness(2); opacity: 0.75; }
  55% { transform: scale(1.04) translateY(-2px); filter: drop-shadow(0 0 30px rgba(0, 156, 59, 0.7)); opacity: 1; }
  100% { transform: scale(1) translateY(0); filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45)); opacity: 1; }
}

@keyframes trophyGlintBurst {
  0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) rotate(18deg) scale(0.7); }
  20% { opacity: 1; transform: translate(-50%, -50%) rotate(18deg) scale(2.5); }
  50% { opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(1.8); }
}

.container {
  width: min(720px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.plans-section .container {
  width: min(1100px, 92vw);
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.5rem 0;
  background: rgba(15, 26, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 156, 59, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(720px, 92vw);
  margin: 0 auto;
  position: relative;
  min-height: 48px;
}

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  justify-content: center;
}

.nav a {
  color: var(--luxus-silver);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover { color: var(--luxus-blue-light); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle svg { width: 26px; height: 26px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn--full { width: 100%; }

.btn--lg { padding: 1rem 1.5rem; font-size: 1rem; }

.btn--whatsapp {
  background: linear-gradient(135deg, #128c7e, var(--whatsapp));
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--primary {
  background: linear-gradient(135deg, var(--luxus-blue), var(--luxus-blue-light));
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--luxus-blue-light);
  border: 1px solid var(--luxus-blue);
}

.btn--brasil {
  background: linear-gradient(135deg, var(--br-green), var(--br-green-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 156, 59, 0.3);
  border: 1px solid rgba(255, 223, 0, 0.25);
}

.btn--brasil:hover {
  box-shadow: 0 6px 24px rgba(0, 156, 59, 0.45);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Hero / Cadastro */
.hero {
  padding: 7.5rem 0 3rem;
  position: relative;
  z-index: 1;
}

.hero__stripes {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--br-green), var(--br-yellow), var(--luxus-blue), var(--br-green));
  background-size: 200% 100%;
  animation: stripeMove 4s linear infinite;
}

@keyframes stripeMove {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.hero__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  position: relative;
}

.hero__intro::before {
  display: none;
}

.hero__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 1.25rem;
  line-height: 0;
}

.hero__logo-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.logo-sparkle {
  position: absolute;
  top: 14%;
  left: 57%;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(18deg);
  animation: trophyGlint 2.8s ease-in-out infinite;
}

.logo-sparkle::before,
.logo-sparkle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.95), 0 0 14px 3px rgba(255, 235, 120, 0.75);
}

.logo-sparkle::before {
  width: 2px;
  height: 100%;
}

.logo-sparkle::after {
  width: 100%;
  height: 2px;
}

@keyframes trophyGlint {
  0%, 72%, 100% {
    opacity: 0.15;
    transform: translate(-50%, -50%) rotate(18deg) scale(0.7);
  }
  78% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(18deg) scale(1.15);
  }
  84% {
    opacity: 0.85;
    transform: translate(-50%, -50%) rotate(18deg) scale(0.95);
  }
}

.hero__logo {
  display: block;
  position: relative;
  z-index: 1;
  height: clamp(150px, 34vw, 230px);
  width: auto;
  max-width: min(320px, 78vw);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.72) translateY(-28px);
  animation: logoEntrance 1s cubic-bezier(0.22, 1.15, 0.36, 1) forwards;
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.72) translateY(-28px);
  }
  55% {
    opacity: 1;
    transform: scale(1.06) translateY(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero__intro .badge {
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  width: 100%;
  max-width: 520px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(0, 156, 59, 0.12);
  border: 1px solid rgba(0, 156, 59, 0.25);
  color: var(--br-green-light);
  margin-bottom: 1rem;
}

.badge__icon {
  width: 1.35em;
  height: 1.35em;
  object-fit: contain;
  flex-shrink: 0;
}

.badge--dark {
  background: rgba(0, 0, 0, 0.4);
  border-color: var(--border);
  color: var(--br-yellow);
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--br-yellow), var(--br-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  color: var(--luxus-gray);
  font-size: 1rem;
  max-width: 480px;
  margin: 1.25rem auto 0;
}

.match-info {
  width: 100%;
  max-width: 420px;
  margin: 1.25rem auto 0;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(0, 40, 18, 0.55);
  border: 1px solid rgba(0, 156, 59, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.match-info__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--br-yellow);
  margin-bottom: 0.65rem;
}

.match-info__versus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4vw, 1.45rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.match-info__team {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.match-info__team img,
.match-info__flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
}

.match-info__team--away {
  color: var(--luxus-silver);
}

.match-info__vs {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--luxus-gray);
  text-transform: lowercase;
}

.match-info__datetime {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.match-info__datetime strong {
  color: #f0f4f8;
  font-weight: 600;
}

.match-info__datetime span {
  color: var(--br-green-light);
  font-size: 0.88rem;
}

.match-info__venue {
  font-size: 0.8rem;
  color: var(--luxus-gray);
}

/* Cadastro card */
.cadastro-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 156, 59, 0.25);
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.cadastro-card__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--br-green), var(--br-yellow), var(--luxus-blue));
}

.palpite-entry {
  margin-bottom: 1rem;
}

.palpite-entry__inner {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1rem 0.25rem;
  background: rgba(0, 0, 0, 0.12);
}

.palpite-num {
  color: var(--br-yellow);
}

.palpite-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.palpite-actions .btn--compact {
  flex: 1;
  padding: 0.5rem 0.65rem;
  font-size: 0.8rem;
  min-height: 2.25rem;
}

#removePalpiteBtn {
  border-color: rgba(255, 100, 100, 0.4);
  color: #ff9a9a;
}

#removePalpiteBtn:hover:not(:disabled) {
  background: rgba(255, 100, 100, 0.08);
}

#submitBtn {
  margin-bottom: 1rem;
}

.form-block {
  border: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.form-block legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--luxus-silver);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.legend-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  background: rgba(61, 180, 232, 0.15);
  border: 1px solid rgba(61, 180, 232, 0.35);
  color: var(--luxus-blue-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--luxus-gray);
  margin-bottom: 0.35rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-row--2 {
  grid-template-columns: 1fr 1fr;
}

.form-group--btn {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--luxus-blue);
}

.form-input--minuto {
  max-width: 120px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.minuto-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.minuto-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--br-yellow);
}

.minuto-prefix {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--br-yellow);
  margin-right: 0.15rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--luxus-gray);
  margin-top: 0.4rem;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem;
  min-height: 65px;
}

.form-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
}

.promo-closed-notice {
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.45);
  border-radius: 12px;
  color: #ffb4b4;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  text-align: center;
}

.cadastro-card--closed {
  opacity: 0.92;
}

.cadastro-card--closed .cadastro-form {
  pointer-events: none;
}

.form-success {
  color: var(--br-green-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
}

.whatsapp-notice {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--luxus-silver);
}

.whatsapp-notice strong {
  color: #6ee7a0;
}

.whatsapp-notice em {
  color: var(--br-yellow);
  font-style: normal;
  font-weight: 600;
}

/* Tempo options */
.tempo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.tempo-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tempo-option__box {
  display: block;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.tempo-option__box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.tempo-option__box small {
  font-size: 0.75rem;
  color: var(--luxus-gray);
}

.tempo-option input:checked + .tempo-option__box {
  border-color: var(--br-green);
  background: rgba(0, 156, 59, 0.12);
  box-shadow: 0 0 0 1px var(--br-green);
}

.tempo-option input:focus-visible + .tempo-option__box {
  outline: 2px solid var(--luxus-blue);
  outline-offset: 2px;
}

/* Regras e passo a passo */
.info-box {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: rgba(22, 35, 28, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 156, 59, 0.2);
  border-radius: 16px;
}

.info-box__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--br-yellow);
  margin-bottom: 0.85rem;
}

.info-box__title:not(:first-child) {
  margin-top: 1.5rem;
}

.info-box__cta {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--luxus-silver);
  text-align: center;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--luxus-silver);
}

.step-text {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--br-green), var(--br-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
}

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rules-list li {
  font-size: 0.88rem;
  color: var(--luxus-gray);
  padding-left: 1.1rem;
  position: relative;
}

.rules-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 14px;
  height: 14px;
  background: url("../assets/bola-futebol.png") center / contain no-repeat;
}

.rules-list a {
  color: var(--luxus-blue-light);
}

/* Success burst overlay */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.success-overlay[hidden] { display: none; }

.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-burst {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(255, 223, 0, 0.9) 0%,
    rgba(0, 156, 59, 0.6) 30%,
    rgba(61, 180, 232, 0.3) 55%,
    transparent 70%);
  animation: burstExpand 1.2s ease-out forwards;
}

.success-burst--2 {
  animation-delay: 0.08s;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 223, 0, 0.4) 25%,
    transparent 60%);
}

@keyframes burstExpand {
  0% { width: 0; height: 0; opacity: 1; }
  40% { opacity: 1; }
  100% { width: 200vmax; height: 200vmax; opacity: 0; }
}

#burstCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.success-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

@keyframes successPop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.success-icon {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
  filter: drop-shadow(0 0 20px rgba(255, 223, 0, 0.6));
}

.success-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--br-yellow), #fff, var(--br-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-content p {
  color: var(--luxus-silver);
  font-size: 0.95rem;
}

/* Planos section */
.plans-section {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.plans-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.plans-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plans-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 26, 18, 0.88) 0%,
    rgba(15, 26, 18, 0.75) 50%,
    rgba(15, 26, 18, 0.92) 100%
  );
}

.plans-section .container {
  position: relative;
  z-index: 1;
}

.plans-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.plans-section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin: 0.5rem 0;
}

.plans-section__header p {
  color: var(--luxus-gray);
  font-size: 0.95rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.plan-card {
  background: rgba(26, 37, 53, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.plan-card--destaque {
  border-color: rgba(61, 180, 232, 0.4);
  background: rgba(26, 37, 53, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.plan-card__tag {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--br-green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.plan-card__flag {
  display: block;
  margin-bottom: 0.5rem;
}

.plan-card__flag img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.plan-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.plan-card__desc {
  font-size: 0.85rem;
  color: var(--luxus-gray);
  margin-bottom: 1rem;
}

.plan-card__price {
  margin-bottom: 0.5rem;
}

.plan-card__price strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--luxus-blue-light);
}

.plan-card__price span {
  font-size: 0.85rem;
  color: var(--luxus-gray);
}

.plan-card__gb {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--br-yellow);
  margin-bottom: 1.25rem;
  padding: 0.5rem;
  background: rgba(255, 223, 0, 0.08);
  border-radius: 8px;
}

.plans-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--luxus-gray);
}

.plans-note a {
  color: var(--luxus-blue-light);
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__inner img,
.footer__logo {
  display: inline-block;
  height: clamp(72px, 16vw, 92px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
  margin-bottom: 0.75rem;
}

.footer p {
  font-size: 0.85rem;
  color: var(--luxus-gray);
}

.footer a {
  color: var(--luxus-blue-light);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__logo {
    height: clamp(125px, 38vw, 170px);
    max-width: min(270px, 84vw);
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .form-row--2 {
    grid-template-columns: 1fr;
  }

  .tempo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 92vw);
    flex-direction: column;
    background: rgba(15, 26, 18, 0.98);
    padding: 1rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
  }

  .nav.open { display: flex; }

  .header { position: fixed; }
  .header__inner { position: relative; }
}

@media (max-width: 400px) {
  .tempo-grid { grid-template-columns: 1fr; }

  .cadastro-card { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .logo-sparkle {
    animation: none;
    opacity: 0.7;
  }
}
