/* ============================================
   BULLS PICKS — Global Styles
   ============================================ */

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

:root {
  --green:      #00e676;
  --green-dark: #00c853;
  --yellow:     #ffd600;
  --bg-dark:    #060c18;
  --bg-card:    #0d1626;
  --bg-card2:   #111c30;
  --text:       #ffffff;
  --text-muted: #8899bb;
  --font:       'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.section-badge {
  display: inline-block;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  padding: 16px 32px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.4);
  text-align: center;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 36px rgba(0, 230, 118, 0.6);
}

.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(255, 214, 0, 0.35);
  cursor: pointer;
}

.btn-yellow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 36px rgba(255, 214, 0, 0.55);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
  background: var(--green);
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar a {
  background: #000;
  color: var(--green);
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.8rem;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('../uploads/2026/01/fondo-apuesatas.webp') center/cover no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 12, 24, 0.82) 0%,
    rgba(6, 12, 24, 0.75) 60%,
    rgba(6, 12, 24, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Fuerza salto de línea en el headline en todos los tamaños */
.hero-title-break { display: block; }

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub:last-of-type {
  margin-bottom: 36px;
}

/* COUNTDOWN */
.countdown-wrap {
  margin: 36px auto;
  max-width: 320px;
}

.countdown-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 12px;
  padding: 14px 24px;
  min-width: 90px;
}

.countdown-block span {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.countdown-block small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 4px;
}

.countdown-sep {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 12px;
}

/* TRUST BADGES */
.sports-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sports-badges span {
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-badges span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}

.scroll-arrow {
  margin-top: 48px;
  font-size: 1.5rem;
  color: var(--green);
  animation: bounce 1.6s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ============================================
   RESULTADOS REALES
   ============================================ */

.section-resultados {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-dark);
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.pick-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,230,118,0.15);
  background: #ffffff;
}

.pick-card img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
}

.pick-card:hover img { transform: scale(1.02); }

.pick-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.pick-badge.ganó {
  background: var(--green);
  color: #000;
}

/* STATS BAR */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.stat-item {
  flex: 1;
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--green);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   PERSONAS REALES — CAROUSEL
   ============================================ */

.section-personas {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a1220 100%);
  overflow: hidden;
}

.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0 20px;
  gap: 12px;
}

.carousel-track-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 0;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 280px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, opacity 0.35s;
  opacity: 0.55;
  transform: scale(0.88);
  cursor: pointer;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.35);
}

.carousel-slide {
  background: #000;
}

.carousel-slide img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  display: block;
}

.carousel-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

.personas-sub {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.link-testimonios {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,230,118,0.3);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.link-testimonios:hover { color: var(--green-dark); }

/* ============================================
   3 PASOS
   ============================================ */

.section-pasos {
  padding: 80px 0;
  background: var(--bg-dark);
  text-align: center;
}

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.paso-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 36px 24px;
  position: relative;
  transition: transform 0.3s;
  border-top: 4px solid var(--paso-color, var(--green));
  box-shadow: 0 0 24px color-mix(in srgb, var(--paso-color, var(--green)) 15%, transparent);
}

.paso-card:nth-child(1) { --paso-color: #00e676; }
.paso-card:nth-child(2) { --paso-color: #ffd600; }
.paso-card:nth-child(3) { --paso-color: #ff4d4d; }

.paso-card:hover {
  transform: translateY(-4px);
}

.paso-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--paso-color, var(--green));
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.paso-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--paso-color, var(--green)) 60%, transparent));
}

.paso-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--paso-color, var(--green));
}

.paso-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA BOX */
.cta-box {
  background: linear-gradient(135deg, rgba(0,230,118,0.08), rgba(0,230,118,0.03));
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 20px;
  padding: 48px 36px;
  max-width: 640px;
  margin: 0 auto;
}

.cta-box-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-box-sub {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ============================================
   TEAM MÉXICO
   ============================================ */

.section-team {
  padding: 80px 0;
  text-align: center;
  background: url('../uploads/2026/01/jardin-scaled-1.webp') center/cover no-repeat;
  position: relative;
}

.section-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,12,24,0.88);
}

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

.team-logo-wrap { margin-bottom: 24px; }

.team-logo {
  height: 60px;
  margin: 0 auto;
  object-fit: contain;
}

.team-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.team-sub {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.team-code {
  display: inline-block;
  color: var(--yellow);
  font-size: 1.1em;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ============================================
   URGENCIA FINAL
   ============================================ */

.section-urgencia {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: url('../uploads/2026/02/fondo-bulls.webp') center/cover no-repeat;
}

.urgencia-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,12,24,0.9);
}

.urgencia-content {
  position: relative;
  z-index: 1;
}

.urgencia-badge {
  display: inline-block;
  background: rgba(255,80,80,0.15);
  border: 1px solid rgba(255,80,80,0.5);
  color: #ff5050;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.urgencia-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.urgencia-content p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1rem;
}

.mini-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mini-icon { font-size: 1.6rem; }

.mini-stat strong {
  font-size: 1rem;
  font-weight: 800;
}

.mini-stat small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #030810;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 32px;
  text-align: center;
}

.footer-logo img {
  height: 48px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

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

.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.modal-logo {
  text-align: center;
  margin-bottom: 16px;
}

.modal-logo img {
  height: 44px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,230,118,0.2));
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.modal-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* FOMO BAR */
.modal-fomo {
  background: rgba(255, 70, 70, 0.08);
  border: 1px solid rgba(255, 70, 70, 0.22);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.fomo-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
  margin-bottom: 8px;
  text-align: center;
}

.fomo-dot {
  width: 7px;
  height: 7px;
  background: #ff4d4d;
  border-radius: 50%;
  flex-shrink: 0;
  animation: fomo-pulse 1.2s ease-in-out infinite;
}

@keyframes fomo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,77,77,0.4); }
  50% { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 4px rgba(255,77,77,0); }
}

.fomo-sep { color: rgba(255,255,255,0.2); }

.fomo-timer {
  color: #ff4d4d;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

#fomo-spots {
  color: #ff4d4d;
}

.fomo-bar-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  height: 5px;
  overflow: hidden;
}

.fomo-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff9800, #ff4d4d);
  border-radius: 100px;
  transition: width 1.5s ease;
  width: 0%;
}

.spots-flash {
  animation: spots-flash 0.4s ease;
}

@keyframes spots-flash {
  0%, 100% { color: #ff4d4d; }
  50% { color: #fff; transform: scale(1.3); }
}

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

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 5px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-input::placeholder { color: rgba(255,255,255,0.25); }

.form-input:focus {
  border-color: rgba(0,230,118,0.5);
  background: rgba(255,255,255,0.1);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

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

.form-link { color: rgba(0,230,118,0.8); }

.btn-full {
  width: 100%;
  text-align: center;
  border: none;
  font-family: var(--font);
}

.form-error {
  color: #ff5050;
  font-size: 0.78rem;
  text-align: center;
  margin-top: 10px;
}

.modal-terms {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 8px 0 0;
}

.modal-micro-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.hero-micro-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.hero-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
  margin: 18px 0 22px;
}
.hero-flow span:not(.flow-arrow) {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 11px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}
.flow-arrow {
  color: #00e676;
  font-size: 0.85rem;
  line-height: 1;
}

.hero-testimonio {
  margin: 20px auto 0;
  max-width: 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,230,118,0.25);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}
.hero-testimonio img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-testimonio-label {
  background: rgba(0,230,118,0.12);
  padding: 7px 12px;
  font-size: 0.72rem;
  color: #00e676;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.field-error {
  display: block;
  color: #ff5050;
  font-size: 0.73rem;
  margin-top: 5px;
  min-height: 1em;
}

.form-input.invalid {
  border-color: rgba(255, 80, 80, 0.6);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TKS-TELEGRAM PAGE
   ============================================ */

.tks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.tks-hero {
  flex: 1;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #081020 0%, var(--bg-dark) 100%);
}

.tks-badge {
  display: inline-block;
  background: rgba(0,230,118,0.15);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.tks-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.tks-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 12px;
  font-size: 0.98rem;
}

.tks-cta-wrap {
  margin: 36px 0;
}

.tks-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 40px;
}

/* ── FOMO BOX TKS ─────────────────────── */
.tks-fomo-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,100,100,0.35);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 460px;
  margin: 0 auto 8px;
  text-align: center;
}

.tks-fomo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tks-fomo-timer {
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 900;
  color: #ff5252;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.tks-fomo-spots {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}

.tks-fomo-spots strong {
  color: #fff;
  font-size: 1.1em;
}

.tks-fomo-cta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.tks-benefits {
  padding: 60px 0;
  background: var(--bg-card);
  text-align: center;
}

.tks-benefits h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.benefit-item {
  background: var(--bg-dark);
  border: 1px solid rgba(0,230,118,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 768px) {
  .picks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pick-card img { height: 320px; }

  .pasos-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .mockups-wrap { gap: 10px; }
  .mockup-item  { max-width: 140px; }
  .mockup-center { max-width: 180px; }

  .stats-bar {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px;
  }

  .stat-item:last-child { border-bottom: none; }

  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .mini-stats { gap: 24px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 480px) {
  .picks-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .pick-card img { height: 300px; }

  .btn-primary, .btn-yellow {
    padding: 14px 22px;
    font-size: 0.88rem;
  }

  .countdown-block {
    min-width: 75px;
    padding: 12px 16px;
  }

  .countdown-block span { font-size: 1.9rem; }

  .cta-box { padding: 32px 20px; }

  .mockups-wrap {
    flex-direction: column;
    align-items: center;
  }

  .mockup-item, .mockup-center {
    max-width: 220px;
    transform: scale(1);
    opacity: 1;
  }

  .footer-links { gap: 14px; }
}

/* ============================================
   HERO PROGRESS BAR
   ============================================ */
.hero-progress-wrap {
  margin-top: 20px;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.hero-progress-track {
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00e676, #ffd600);
  border-radius: 100px;
  width: 0%;
  transition: width 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-progress-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.hero-progress-text span {
  color: var(--green);
  font-weight: 700;
}

/* ============================================
   HERO MINI STATS
   ============================================ */
.hero-mini-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 18px;
}

.hero-mini-stats span {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* ============================================
   CTA FLOTANTE MOBILE
   ============================================ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(6,12,24,0.98) 0%, rgba(6,12,24,0) 100%);
  padding-top: 24px;
}

.floating-cta-btn {
  width: 100%;
  background: var(--green);
  color: #060c18;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 16px 20px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 0 4px 20px rgba(0,230,118,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-cta-btn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .floating-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ============================================
   EXIT INTENT
   ============================================ */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(16px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-overlay.active {
  display: flex;
}

.exit-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  padding: 36px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.exit-emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.exit-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.exit-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.exit-sub strong {
  color: #ff4d4d;
  font-size: 1.1em;
}

.exit-leave {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s;
}

.exit-leave:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   ACTIVITY TOAST
   ============================================ */
.activity-toast {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 7777;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,22,38,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 16px;
  max-width: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transform: translateX(-300px);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: none;
}

.activity-toast.show {
  transform: translateX(0);
}

.toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #00c853);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #060c18;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}

.toast-text strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .activity-toast { bottom: 90px; }
}
