/* ============================================================
   TIPS DO PERALTA — Landing page de alta conversão
   Identidade: Tipster profissional + Futebol + Premium + Dark
   ============================================================ */

:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --card: rgba(255, 255, 255, 0.035);
  --card-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --gray: #a0a0a0;
  --green: #00e676;
  --green-dark: #00a854;
  --red: #ff3b3b;
  --radius: 18px;
  --radius-sm: 12px;
  --font-head: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-green: 0 10px 40px rgba(0, 230, 118, 0.28);
  --glow-green: 0 0 0 1px rgba(0, 230, 118, 0.35), 0 8px 40px rgba(0, 230, 118, 0.28);
  --nav-h: 68px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--white);
  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;
}

button,
input {
  font-family: inherit;
  font-size: 100%;
}

::selection {
  background: rgba(0, 230, 118, 0.3);
  color: #fff;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #1c1c1c;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2c2c2c;
}

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  padding: 7px 14px;
  border: 1px solid rgba(0, 230, 118, 0.28);
  border-radius: 99px;
  background: rgba(0, 230, 118, 0.06);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--gray);
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  max-width: 620px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.green {
  color: var(--green);
}

/* ---------- Botões ---------- */
.btn {
  --btn-bg: linear-gradient(135deg, #00e676 0%, #00c853 55%, #00a854 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #03150b;
  background: var(--btn-bg);
  border: none;
  border-radius: 14px;
  padding: 17px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: var(--shadow-green);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 14px 46px rgba(0, 230, 118, 0.38);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-lg {
  width: 100%;
  max-width: 460px;
  padding: 19px 34px;
  font-size: 1.08rem;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: rgba(0, 230, 118, 0.5);
  color: var(--green);
  box-shadow: none;
  background: rgba(0, 230, 118, 0.06);
}

/* Pulsação suave do CTA principal */
@keyframes pulse-cta {
  0%,
  100% {
    box-shadow: 0 8px 34px rgba(0, 230, 118, 0.28), 0 0 0 0 rgba(0, 230, 118, 0.45);
  }
  50% {
    box-shadow: 0 8px 40px rgba(0, 230, 118, 0.4), 0 0 0 16px rgba(0, 230, 118, 0);
  }
}

.btn--pulse {
  animation: pulse-cta 2.4s ease-in-out infinite;
}

/* ---------- Animação de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn--pulse {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #00e676, #00a854);
  color: #03150b;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(0, 230, 118, 0.35);
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: rgba(0, 230, 118, 0.18);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 20px 120px;
  overflow: hidden;
  background-color: var(--bg);
}

/* Fundo hero: imagem ESCANTEIO-HERO.jpg (quando presente) */
.hero.has-image {
  background-image: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.55) 0%,
      rgba(5, 5, 5, 0.72) 40%,
      rgba(5, 5, 5, 0.94) 82%,
    ),
    url("../../ESCANTEIO-HERO.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* Fundo fallback premium (quando image-hero ainda não existe) */
.hero.fallback-bg {
  background:
    radial-gradient(1000px 520px at 50% -10%, rgba(0, 230, 118, 0.16) 0%, transparent 60%),
    radial-gradient(700px 380px at 85% 20%, rgba(0, 168, 84, 0.1) 0%, transparent 60%),
    radial-gradient(760px 420px at 10% 78%, rgba(0, 230, 118, 0.07) 0%, transparent 60%),
    var(--bg);
}

/* Campo de futebol desenhado em SVG, apenas no fallback */
.hero.fallback-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='720' viewBox='0 0 720 720'%3E%3Cpath d='M360 80v560M90 360h540' stroke='%2300E676' stroke-opacity='0.07' stroke-width='1.5'/%3E%3Ccircle cx='360' cy='360' r='90' fill='none' stroke='%2300E676' stroke-opacity='0.07' stroke-width='1.5'/%3E%3Crect x='70' y='70' width='580' height='580' rx='28' fill='none' stroke='%2300E676' stroke-opacity='0.06' stroke-width='1.5'/%3E%3Ccircle cx='180' cy='180' r='40' fill='none' stroke='%2300E676' stroke-opacity='0.06' stroke-width='1.5'/%3E%3Ccircle cx='540' cy='540' r='40' fill='none' stroke='%2300E676' stroke-opacity='0.06' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 720px 720px;
  opacity: 0.6;
  pointer-events: none;
}

/* Brilho sutil no topo da imagem */
.hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(0, 230, 118, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 99px;
  padding: 9px 18px;
  margin-bottom: 26px;
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
  animation: live-pulse 1.6s ease-out infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.55);
  }
  100% {
    box-shadow: 0 0 0 9px rgba(255, 59, 59, 0);
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 9vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title .grad {
  background: linear-gradient(135deg, #00e676 0%, #4dff9e 60%, #00a854 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 3.4vw, 1.3rem);
  font-weight: 600;
  color: var(--white);
  max-width: 560px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.hero-desc {
  color: var(--gray);
  font-size: clamp(0.9rem, 2.8vw, 1.02rem);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.telegram-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
}

.telegram-hint .arrow {
  color: var(--green);
  animation: float-arrow 1.8s ease-in-out infinite;
}

@keyframes float-arrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d6d6d6;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 99px;
  padding: 8px 15px;
}

.chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.scroll-hint {
  position: absolute;
  bottom: 78px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  display: none;
}

.scroll-hint::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 99px;
  background: var(--green);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* ============================================================
   MARQUEE / FAIXA
   ============================================================ */
.ticker {
  background: linear-gradient(90deg, #00a854, #00e676);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  color: #03150b;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-track span::after {
  content: "◆";
  font-size: 0.6rem;
  opacity: 0.55;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   PROVA SOCIAL
   ============================================================ */
.social-proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 34px;
}

.feature-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 118, 0.35);
  background: var(--card-strong);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.feature-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
}

.feature-text {
  color: var(--gray);
  font-size: 0.88rem;
}

/* ---------- Métricas (sem números inventados) ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  background: linear-gradient(135deg, #00e676, #00a854);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  color: var(--gray);
  font-size: 0.76rem;
  line-height: 1.35;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 34px;
}

.step-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 118, 0.3);
}

.step-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.35), rgba(0, 230, 118, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-card .step-icon {
  position: absolute;
  top: 26px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 19px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.step-text {
  color: var(--gray);
  font-size: 0.9rem;
}

.steps-connector {
  display: none;
}

/* ============================================================
   BLOCO DE CONVERSÃO
   ============================================================ */
.convert {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.convert::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(0, 230, 118, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.convert .container {
  position: relative;
  z-index: 1;
}

.convert-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 30px auto 0;
  max-width: 620px;
  text-align: left;
}

.convert-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.convert-item:hover {
  border-color: rgba(0, 230, 118, 0.3);
  transform: translateX(4px);
}

.convert-item .icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.convert-item p {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

/* ============================================================
   FORMULÁRIO
   ============================================================ */
.form-section {
  position: relative;
}

.form-card {
  max-width: 520px;
  margin: 36px auto 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.form-sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6d6d6;
  margin-bottom: 8px;
}

.form-input-wrap {
  position: relative;
}

.form-input-wrap .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.55;
  pointer-events: none;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  padding: 15px 16px 15px 46px;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-control::placeholder {
  color: #6b6b6b;
}

.form-control:focus {
  border-color: rgba(0, 230, 118, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.form-control.is-invalid {
  border-color: rgba(255, 59, 59, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
}

.field-error {
  display: none;
  color: var(--red);
  font-size: 0.78rem;
  margin-top: 6px;
}

.field-error.show {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 20px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}

.checkbox-group .check-label {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.45;
  user-select: none;
}

.checkbox-group.is-invalid .check-label {
  color: var(--red);
}

.form-status {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  margin-top: 16px;
}

.form-status.show {
  display: flex;
}

.form-status--error {
  background: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.35);
  color: #ff8a8a;
}

.form-status--ok {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--green);
}

.form-note {
  margin-top: 16px;
  text-align: center;
  color: var(--gray);
  font-size: 0.76rem;
}

.form-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(3, 21, 11, 0.3);
  border-top-color: #03150b;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.btn.is-loading .btn-spinner {
  display: inline-block;
}

.btn.is-loading .btn-text {
  opacity: 0.7;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 110px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-text {
  color: var(--gray);
  font-size: 0.8rem;
  max-width: 520px;
  margin: 0 auto 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--gray);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-legal {
  margin-top: 18px;
  font-size: 0.7rem;
  color: #5c5c5c;
}

/* ============================================================
   CTA FIXO — mobile
   ============================================================ */
.mobile-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.92) 40%, #050505 100%);
  pointer-events: none;
}

.mobile-cta .btn {
  pointer-events: auto;
}

.mobile-cta.is-hidden {
  display: none;
}

/* ============================================================
   PÁGINA DE ACESSO
   ============================================================ */
.access-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 50% -10%, rgba(0, 230, 118, 0.14) 0%, transparent 60%),
    var(--bg);
}

.access-card {
  max-width: 560px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 26px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.access-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 36px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  box-shadow: var(--glow-green);
  animation: pop-in 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.access-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 6vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.access-text {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.access-text strong {
  color: var(--white);
}

.access-cta {
  width: 100%;
  margin-bottom: 14px;
}

.access-hint {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 22px;
}

.access-warn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.8rem;
  color: #ffbaba;
  background: rgba(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: left;
  margin-top: 8px;
}

.access-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gray);
  font-size: 0.82rem;
  margin-top: 24px;
  transition: color 0.25s ease;
}

.access-back:hover {
  color: var(--green);
}

.telegram-btn {
  --btn-bg: linear-gradient(135deg, #2aabee 0%, #1e88e5 60%, #1565c0 100%);
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(30, 136, 229, 0.35);
}

.telegram-btn:hover {
  box-shadow: 0 14px 46px rgba(30, 136, 229, 0.5);
}

.telegram-btn--pulse {
  animation: pulse-telegram 2.4s ease-in-out infinite;
}

@keyframes pulse-telegram {
  0%,
  100% {
    box-shadow: 0 8px 34px rgba(30, 136, 229, 0.3), 0 0 0 0 rgba(30, 136, 229, 0.45);
  }
  50% {
    box-shadow: 0 8px 40px rgba(30, 136, 229, 0.42), 0 0 0 16px rgba(30, 136, 229, 0);
  }
}

/* ============================================================
   RESPONSIVO — tablet
   ============================================================ */
@media (min-width: 640px) {
  .section {
    padding: 88px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
  }

  .steps-connector {
    display: block;
    position: absolute;
    top: 52px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 230, 118, 0.5), rgba(0, 230, 118, 0.15), rgba(0, 230, 118, 0.5));
    z-index: 0;
    pointer-events: none;
  }

  .steps-grid .step-card {
    z-index: 1;
  }

  .scroll-hint {
    display: block;
  }

  .hero {
    padding-bottom: 140px;
  }
}

/* ============================================================
   RESPONSIVO — desktop
   ============================================================ */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-card {
    padding: 40px 40px;
  }

  .footer {
    padding: 50px 0 60px;
  }
}

/* ============================================================
   RESPONSIVO — telas muito grandes
   ============================================================ */
@media (min-width: 1600px) {
  .hero {
    min-height: 900px;
  }
}

/* ============================================================
   LIVE TIPS - Carrossel de Entradas ao Vivo
   ============================================================ */

.live-tips-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0,230,118,0.03) 50%, var(--bg) 100%);
  padding: 72px 0;
}

.live-tips-section .eyebrow { display: inline-flex; align-items: center; gap: 8px; }

.tips-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 32px auto 0;
  overflow: hidden;
}

.tips-track { position: relative; width: 100%; min-height: 260px; }

.tip-card {
  position: absolute;
  inset: 0;
  background: var(--card-strong);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateX(60px) scale(0.96);
  transition: opacity 0.45s cubic-bezier(.4,0,.2,1), transform 0.45s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}

.tip-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 1;
}

.tip-card-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }

.tip-result {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.tip-live  { background: rgba(0,230,118,.12); color: var(--green); border: 1px solid rgba(0,230,118,.3); }
.tip-green { background: rgba(0,230,118,.15); color: var(--green); border: 1px solid rgba(0,230,118,.4); }
.tip-red   { background: rgba(255,59,59,.12); color: var(--red);   border: 1px solid rgba(255,59,59,.3); }

.tip-league {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.tip-teams { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.tip-team {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex: 1;
  line-height: 1.2;
}
.tip-team.home { text-align: right; }
.tip-team.away { text-align: left; }

.tip-score-block { display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; }

.tip-score {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tip-minute { font-size: 0.68rem; color: var(--gray); letter-spacing: .05em; }

.tip-market-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px dashed rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-market-blur {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  filter: blur(7px);
  user-select: none;
  pointer-events: none;
}

.tip-market-text { font-size: 1.1rem; font-weight: 700; color: var(--green); letter-spacing: .04em; white-space: nowrap; }

.tip-market-lock {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
}

.lock-icon { font-size: 1.4rem; filter: drop-shadow(0 0 8px rgba(0,230,118,.6)); }
.lock-label { font-size: 0.72rem; color: var(--gray); line-height: 1.4; text-align: left; }
.lock-label strong { color: var(--green); font-weight: 700; }

.tip-card-footer { display: flex; align-items: center; justify-content: space-between; }

.tip-counter { font-size: 0.68rem; color: var(--gray); letter-spacing: .06em; }

.tip-cta-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .06em;
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid rgba(0,230,118,.35);
  border-radius: 20px;
  transition: background .2s;
}
.tip-cta-btn:hover { background: rgba(0,230,118,.12); }

.tips-dots { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 20px; }

.tip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.tip-dot.active { background: var(--green); transform: scale(1.3); box-shadow: 0 0 8px rgba(0,230,118,.5); }

@media (max-width: 540px) {
  .tips-carousel { max-width: 100%; }
  .tip-team  { font-size: 0.85rem; }
  .tip-score { font-size: 1.3rem; }
}

/* ============================================================
   ACESSO VIP E FREE
   ============================================================ */

.scoreboard-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.score-box {
  background: var(--card-strong);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 130px;
}
.green-box { border-bottom: 3px solid var(--green); }
.red-box { border-bottom: 3px solid var(--red); }

.score-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--gray);
  margin-bottom: 4px;
}
.green-box .score-label { color: var(--green); }
.red-box .score-label { color: var(--red); }

.score-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.access-section {
  padding: 80px 0;
  background: var(--bg-2);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
}

.access-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.vip-card {
  border: 1px solid rgba(0, 230, 118, 0.4);
  box-shadow: 0 10px 40px rgba(0, 230, 118, 0.1);
  background: linear-gradient(180deg, rgba(0,230,118,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.access-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: .08em;
}

.access-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.access-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.access-price .currency { font-size: 1rem; color: var(--gray); font-weight: 600; }
.access-price .value { font-size: 3rem; font-family: var(--font-head); font-weight: 900; color: var(--green); line-height: 1; }
.access-price .period { font-size: 1rem; color: var(--gray); font-weight: 500; }

.access-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.access-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray);
}

.btn-vip {
  width: 100%;
  background: var(--green);
  color: #000;
  font-weight: 800;
}
.btn-vip:hover { background: #00c062; }

.free-card {
  justify-content: center;
}
.free-desc {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

.coupon-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btn-free {
  width: 100%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-free:hover {
  background: rgba(255,255,255,0.15);
}

.coupon-hint {
  margin-top: 24px;
  text-align: center;
}
.coupon-hint a {
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 768px) {
  .access-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

.checkout-page {
  background-color: #131314;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 20px 80px;
  font-family: var(--font-body);
}

.checkout-container {
  width: 100%;
  max-width: 460px;
}

.checkout-title {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Plan Toggle */
.plan-options {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.plan-card {
  flex: 1;
  background: transparent;
  border: 1px solid #3c4043;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.plan-card:hover {
  border-color: #5f6368;
}

.plan-card.active {
  background: rgba(138, 180, 248, 0.08);
  border-color: #8ab4f8;
}

.radio-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #5f6368;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.2s;
}
.plan-card.active .radio-btn {
  border-color: #8ab4f8;
}
.plan-card.active .radio-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #8ab4f8;
  border-radius: 50%;
}

.plan-name {
  color: #e8eaed;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.plan-price {
  color: #9aa0a6;
  font-size: 0.8rem;
  line-height: 1.4;
}

.plan-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(138, 180, 248, 0.15);
  color: #8ab4f8;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Blocks */
.checkout-block {
  background: #1a1a1b;
  border: 1px solid #2e2f31;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

/* Order Details */
.checkout-block-title {
  color: #e8eaed;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #9aa0a6;
  font-size: 0.85rem;
}
.order-row.highlight {
  color: #e8eaed;
  font-weight: 600;
}
.order-row.total {
  border-top: 1px solid #3c4043;
  padding-top: 16px;
  margin-top: 16px;
  margin-bottom: 0;
  color: #e8eaed;
  font-weight: 700;
}

.info-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #9aa0a6;
  font-size: 0.8rem;
  line-height: 1.5;
}
.info-note svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: #9aa0a6;
  margin-top: 2px;
}

/* Form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-form label {
  color: #e8eaed;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.checkout-form input {
  width: 100%;
  background: #202124;
  border: 1px solid #3c4043;
  border-radius: 6px;
  padding: 12px;
  color: #e8eaed;
  font-size: 0.9rem;
}
.checkout-form input:focus {
  outline: none;
  border-color: #8ab4f8;
}

.btn-pix {
  background: #00e676;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}
.btn-pix:hover {
  background: #00c062;
}

.pix-icon-inline {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 18px;
  height: 18px;
}
