/* ═══════════════════════════════════════════════════════
   PREMIOS PALOMINO — style.css
   Tema: Negro · Blanco · Amarillo
═══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --yellow:      #FFD700;
  --yellow-l:    #FFE44D;
  --yellow-d:    #CC9900;
  --yellow-pale: #FFF9E0;
  --black:       #0A0A0A;
  --black-2:     #111111;
  --black-3:     #1A1A1A;
  --black-4:     #222222;
  --black-5:     #2E2E2E;
  --white:       #FFFFFF;
  --white-2:     #F0F0F0;
  --white-3:     #D0D0D0;
  --muted:       #888888;
  --muted-2:     #555555;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 40px rgba(0,0,0,0.7);
  --glow:        0 0 30px rgba(255,215,0,0.3);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--yellow-d); border-radius: 3px; }

/* ── UTILITY ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.hidden { display: none !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--yellow-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--yellow);
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 1rem;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,215,0,0.1);
  border-color: var(--yellow-l);
  color: var(--yellow-l);
}

.btn-full { width: 100%; justify-content: center; }

/* ── SECTION SHARED ── */
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--yellow); }

.section-desc {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; margin: 0 auto;
}

/* ── ANIMATIONS ── */
[data-animate] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999; background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.8);
  border-bottom: 1px solid rgba(255,215,0,0.25);
}

.nav-container {
  max-width: 1160px; margin: 0 auto;
  padding: 0 1.5rem; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem; color: var(--white);
}
.nav-logo .logo-icon { font-size: 1.6rem; }
.nav-logo .logo-text strong { color: var(--yellow); }

.nav-links {
  list-style: none; display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--white-3); letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--yellow); }

.nav-btn {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 8px 20px; border-radius: 8px;
  font-weight: 700 !important;
}
.nav-btn:hover { background: var(--yellow-l) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255,215,0,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,215,0,0.05) 0%, transparent 50%),
    var(--black);
  padding: 0 1.5rem;
}

.hero-bg-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,215,0,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,215,0,0.03) 60px);
}

.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--yellow); opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.5); }
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 820px; animation: heroFadeIn 1s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
  animation: heroFadeIn 1s 0.2s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900; line-height: 1.0; color: var(--white);
  margin-bottom: 24px; animation: heroFadeIn 1s 0.35s ease both;
}
.hero-title em {
  font-style: italic; color: var(--yellow); display: block;
  text-shadow: 0 0 60px rgba(255,215,0,0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted); line-height: 1.7;
  margin-bottom: 32px; animation: heroFadeIn 1s 0.5s ease both;
}

.hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px; margin-bottom: 40px;
  animation: heroFadeIn 1s 0.65s ease both;
}
.hero-meta span {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--white-2);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.25);
  padding: 8px 18px; border-radius: 100px;
}
.hero-meta span i { color: var(--yellow); }

.hero-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  animation: heroFadeIn 1s 0.8s ease both;
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.stats-band {
  background: var(--yellow);
  padding: 40px 1.5rem;
}
.stats-container {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
}
.stat-item {
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.stat-item > div:first-child { display: flex; align-items: baseline; gap: 2px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; color: var(--black); line-height: 1;
}
.stat-prefix, .stat-plus { font-size: 1.4rem; font-weight: 700; color: var(--black); }
.stat-label {
  font-size: 0.8rem; font-weight: 700; color: rgba(0,0,0,0.6);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}
.stat-divider { width: 1px; height: 50px; background: rgba(0,0,0,0.2); }

/* ══════════════════════════════════════
   PREMIOS
══════════════════════════════════════ */
.premios-section {
  background: var(--black-2);
}

.premios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.premio-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  overflow: hidden;
}
.premio-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.premio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,0.5);
  box-shadow: var(--glow);
}
.premio-card:hover::before { opacity: 1; }

/* Gran premio — misma card, no ocupa fila entera */
.premio-grand {
  grid-column: auto !important;
  display: block !important;
  border-color: rgba(255,215,0,0.4);
  background: linear-gradient(135deg, var(--black-4) 0%, var(--black-3) 100%);
}
.premio-grand .premio-valor {
  grid-column: auto !important; grid-row: auto !important; text-align: left !important;
}

.premio-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--yellow); color: var(--black);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 18px;
}

/* ── IMAGEN PREMIO ── */
.premio-icon-wrap {
  width: 100% !important;
  height: 200px !important;
  border-radius: 12px !important;
  border: none !important;
  background: var(--black-4) !important;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.premio-grand .premio-icon-wrap {
  width: 100% !important;
  height: 200px !important;
  border-radius: 12px !important;
  flex-shrink: 1 !important;
}
.premio-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block; border-radius: 0;
  transition: transform 0.4s ease;
}
.premio-card:hover .premio-img { transform: scale(1.05); }
.premio-icon {
  font-size: 3rem;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}

.premio-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.premio-desc {
  font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6;
}
.premio-valor {
  font-size: 1.15rem; font-weight: 800; color: var(--yellow);
}
.premio-mystery .premio-valor { font-style: italic; color: var(--muted); }

/* ══════════════════════════════════════
   PASOS
══════════════════════════════════════ */
.pasos-section { background: var(--black); }
.pasos-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.paso-item {
  flex: 1; min-width: 220px; max-width: 280px;
  background: var(--black-3);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  position: relative; transition: var(--transition);
}
.paso-item:hover {
  border-color: rgba(255,215,0,0.5);
  transform: translateY(-4px); box-shadow: var(--glow);
}
.paso-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 700;
  background: var(--yellow); color: var(--black);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.paso-icon {
  width: 64px; height: 64px; background: rgba(255,215,0,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--yellow); margin: 0 auto 18px;
  border: 1px solid rgba(255,215,0,0.2);
}
.paso-item h3 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  color: var(--white); margin-bottom: 10px;
}
.paso-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.paso-arrow { font-size: 1.5rem; color: var(--yellow-d); padding: 0 16px; flex-shrink: 0; }

/* ══════════════════════════════════════
   REGISTRO / FORM
══════════════════════════════════════ */
.registro-section { background: var(--black-2); }
.form-wrapper {
  max-width: 720px; margin: 0 auto;
  background: var(--black-3);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-group--full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--white-2); }
.required { color: var(--yellow); }

.input-wrap { position: relative; }
.input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted-2); font-size: 0.9rem; pointer-events: none;
  transition: color var(--transition);
}
.input-wrap input, .input-wrap select, .input-wrap textarea {
  width: 100%; background: var(--black-4);
  border: 1.5px solid rgba(255,215,0,0.12);
  border-radius: var(--radius);
  padding: 12px 14px 12px 40px;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  color: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input-wrap input::placeholder { color: var(--muted-2); }
.input-wrap input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.12);
}
.input-wrap:focus-within .input-icon { color: var(--yellow); }
.input-wrap input.input-error { border-color: #e74c3c; }
.field-error { font-size: 0.78rem; color: #e74c3c; min-height: 18px; display: block; }

.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--yellow); cursor: pointer; }
.form-check label { font-size: 0.88rem; color: var(--muted); cursor: pointer; }
.link-gold { color: var(--yellow); text-decoration: underline; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: var(--yellow);
  padding: 80px 1.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0,0,0,0.04) 31px);
}
.cta-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--black); margin-bottom: 12px;
}
.cta-banner p { font-size: 1.1rem; color: rgba(0,0,0,0.6); margin-bottom: 32px; }
.cta-banner .btn-primary { background: var(--black); color: var(--yellow); }
.cta-banner .btn-primary:hover { background: var(--black-3); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,215,0,0.15);
  padding: 60px 1.5rem 0;
}
.footer-container {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.footer-logo strong { color: var(--yellow); }
.footer-tagline { font-size: 0.88rem; color: var(--muted); }
.footer-links h4, .footer-contact h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-contact p {
  font-size: 0.88rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.footer-contact i { color: var(--yellow); width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,215,0,0.1); padding: 20px 0;
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted-2); }
.footer-bottom strong { color: var(--yellow-d); }

/* ══════════════════════════════════════
   MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(4px);
}
.modal {
  background: var(--black-3); border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--radius-lg); padding: 40px 36px;
  max-width: 520px; width: 100%; position: relative;
  max-height: 80vh; overflow-y: auto;
}
.modal h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 20px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--muted);
  font-size: 1.2rem; cursor: pointer; transition: color var(--transition);
}
.modal-close:hover { color: var(--white); }
.modal-body { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.modal-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.modal-body strong { color: var(--white-2); }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--black-4); border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius); padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--white);
  z-index: 9998; box-shadow: var(--shadow);
  animation: slideInToast 0.3s ease; max-width: 340px;
}
.toast i { color: var(--yellow); font-size: 1rem; }
@keyframes slideInToast {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--black-2); flex-direction: column; align-items: center;
    gap: 0; padding: 0; max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid rgba(255,215,0,0.15);
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 2rem; border-bottom: 1px solid rgba(255,215,0,0.07); font-size: 1rem; }
  .nav-links .nav-btn { margin: 16px 2rem; text-align: center; border-radius: var(--radius); }
  .hamburger { display: flex; }
  .premio-grand { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .pasos-grid { flex-direction: column; align-items: center; }
  .paso-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; }
  .stats-container { gap: 16px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════
   RESPONSIVE COMPLETO — MOBILE FIRST
══════════════════════════════════════ */

/* ── HERO MOBILE ── */
@media (max-width: 768px) {
  .hero {
    padding: 90px 1.2rem 60px;
    min-height: 100svh;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .hero-content {
    text-align: left;
    max-width: 100%;
    padding: 0;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: clamp(2.8rem, 11vw, 5rem);
    margin-bottom: 16px;
    line-height: 1.05;
  }
  .hero-title em { display: inline; }
  .hero-subtitle {
    font-size: 0.92rem;
    margin-bottom: 24px;
    color: var(--muted);
    line-height: 1.6;
  }
  .hero-meta {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .hero-meta span {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
    font-size: 0.95rem;
  }
  .hero-scroll-hint { display: none; }
}

/* ── NAVBAR MOBILE ── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--black-2);
    flex-direction: column;
    align-items: stretch;
    gap: 0; padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid rgba(255,215,0,0.15);
    z-index: 998;
  }
  .nav-links.open { max-height: 500px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 15px 1.5rem;
    border-bottom: 1px solid rgba(255,215,0,0.07);
    font-size: 0.95rem;
    text-align: left;
  }
  .nav-links .nav-btn {
    margin: 12px 1.5rem;
    display: block;
    text-align: center;
    border-radius: var(--radius);
    padding: 11px 20px;
  }
  .hamburger { display: flex; }
}

/* ── STATS BAND MOBILE ── */
@media (max-width: 600px) {
  .stats-band { padding: 28px 1rem; }
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-divider { display: none; }
  .stat-number { font-size: 2.2rem; }
  .stat-item { text-align: center; }
}

/* ── PREMIOS MOBILE ── */
@media (max-width: 768px) {
  .premios-section { padding: 60px 0; }
  .premios-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .premio-card {
    padding: 22px 18px;
  }
  .premio-grand { grid-column: auto !important; display: block !important; }
  .premio-icon-wrap {
    height: 180px !important;
    border-radius: 10px !important;
  }
  .premio-name { font-size: 1.2rem; }
  .premio-desc { font-size: 0.84rem; margin-bottom: 14px; }
  .premio-valor { font-size: 1rem; }
}

/* ── PASOS MOBILE ── */
@media (max-width: 768px) {
  .pasos-section { padding: 60px 0; }
  .pasos-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 1rem;
  }
  .paso-item {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
  .paso-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
}

/* ── SECTION HEADERS MOBILE ── */
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .section-desc { font-size: 0.9rem; padding: 0 0.5rem; }
}

/* ── FOOTER MOBILE ── */
@media (max-width: 768px) {
  .footer { padding: 40px 1.2rem 0; }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 16px 0;
  }
}

/* ── CTA BANNER MOBILE ── */
@media (max-width: 600px) {
  .cta-banner { padding: 50px 1.2rem; }
  .cta-banner h2 { font-size: 1.8rem; }
  .cta-banner p { font-size: 0.92rem; }
  .cta-banner .btn-primary {
    width: 100%; justify-content: center; font-size: 0.95rem;
  }
}

/* ── MODAL MOBILE ── */
@media (max-width: 600px) {
  .modal-overlay { padding: 0.5rem; align-items: flex-end; }
  .modal {
    padding: 28px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 90vh;
  }
}

/* ── TOAST MOBILE ── */
@media (max-width: 600px) {
  .toast {
    bottom: 1rem; right: 1rem; left: 1rem;
    max-width: unset;
  }
}

/* ── FORM WRAPPER MOBILE ── */
@media (max-width: 600px) {
  .form-wrapper { padding: 24px 16px; border-radius: var(--radius); }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── CONTAINER PADDING MOBILE ── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
}


    /* ── TICKER ── */
    .ticker-wrap {
      background: #111;
      border-bottom: 1px solid rgba(255,215,0,.15);
      overflow: hidden; white-space: nowrap;
      padding: 10px 0; position: relative;
      z-index: 50; margin-top: 70px;
    }
    .ticker-inner {
      display: inline-block;
      animation: ticker 30s linear infinite;
    }
    .ticker-item {
      display: inline-flex; align-items: center; gap: 8px;
      margin: 0 28px;
      font-family: 'Outfit', sans-serif;
      font-size: .72rem; font-weight: 600; letter-spacing: .1em;
      color: #ccc;
    }
    .ticker-item i { color: #FFD700; font-size: .75rem; }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── HERO LAYOUT RESPONSIVE ── */
    .hero-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%; max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      gap: 40px;
      position: relative; z-index: 2;
    }
    .hero-left  { flex: 1; min-width: 0; }
    .hero-right {
      flex: 0 0 400px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,215,0,.25);
      border-radius: 20px;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    /* Carrusel */
    .car-header {
      padding: 14px 18px;
      border-bottom: 1px solid rgba(255,215,0,.2);
      display: flex; align-items: center; justify-content: space-between;
    }
    .car-eyebrow { font-size: .65rem; font-weight: 600; letter-spacing: .1em; color: rgba(255,215,0,.7); margin: 0; }
    .car-title   { font-size: .88rem; font-weight: 700; color: #eee; margin: 0; transition: opacity .3s; }
    .car-btn {
      width: 30px; height: 30px; border-radius: 50%;
      border: 1px solid rgba(255,215,0,.3); background: rgba(0,0,0,.3);
      color: #FFD700; cursor: pointer; font-size: 1rem; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .car-btn:hover { background: rgba(255,215,0,.15); }
    .car-img-wrap {
      height: 260px; display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,.2); overflow: hidden; position: relative;
    }
    .car-img  { max-height: 200px; max-width: 320px; object-fit: contain; transition: opacity .3s; }
    .car-icon { font-size: 5rem; color: #FFD700; display: flex; align-items: center; justify-content: center; transition: opacity .3s; }
    .car-badge {
      position: absolute; top: 10px; left: 10px;
      background: rgba(255,215,0,.9); color: #111;
      font-size: .62rem; font-weight: 800; padding: 3px 10px;
      border-radius: 20px; letter-spacing: .08em;
    }
    .car-info { padding: 14px 18px; }
    .car-row  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
    .car-name { font-size: .82rem; font-weight: 600; color: #eee; transition: opacity .3s; }
    .car-valor {
      background: rgba(255,215,0,.15); color: #FFD700;
      font-size: .7rem; font-weight: 700; padding: 3px 10px;
      border-radius: 20px; white-space: nowrap; transition: opacity .3s;
    }
    .car-desc { font-size: .74rem; color: rgba(238,238,238,.55); margin: 0 0 12px; transition: opacity .3s; }
    .car-dots { display: flex; gap: 6px; justify-content: center; }
    .car-dot  {
      height: 8px; border-radius: 20px; cursor: pointer;
      transition: all .3s; background: rgba(255,215,0,.3);
    }

    /* ── BOTONES FLOTANTES ── */
    .fab-wrap {
      position: fixed; bottom: 24px; right: 20px;
      display: flex; flex-direction: column;
      align-items: flex-end; gap: 10px; z-index: 999;
    }
    .fab {
      display: flex; align-items: center; gap: 10px;
      padding: 11px 18px; border-radius: 50px;
      font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
      text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,.3);
      transition: transform .15s, box-shadow .15s; color: #fff;
    }
    .fab:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,.4); }
    .fab-wa  { background: #25d366; }
    .fab-tt  { background: #010101; }
    .fab i   { font-size: 20px; }

    /* ── RESPONSIVE HERO ── */
    @media (max-width: 900px) {
      .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 28px;
      }
      .hero-left { width: 100%; }
      .hero-right {
        flex: none;
        width: 100%;
        max-width: 100%;
      }
      .hero { padding-top: 20px; padding-bottom: 40px; min-height: auto; align-items: flex-start; }
    }

    @media (max-width: 600px) {
      .hero-inner { padding: 0 16px; gap: 24px; }
      .hero-right { border-radius: 16px; }
      .car-img-wrap { height: 200px; }
      .car-img { max-height: 160px; }
      .car-icon { font-size: 4rem; }
      .fab { padding: 10px 14px; font-size: 13px; }
      .fab i { font-size: 18px; }
    }

    /* ── HERO CONTENT MOBILE ── */
    @media (max-width: 768px) {
      .hero-content { text-align: left; }
      .hero-title { font-size: clamp(2.6rem, 10vw, 4.5rem); }
      .hero-title em { display: inline; }
      .hero-meta { justify-content: flex-start; flex-wrap: wrap; gap: 8px; }
      .hero-meta span { font-size: .76rem; padding: 6px 11px; }
      .hero-actions { flex-direction: column; gap: 10px; }
      .hero-actions a { width: 100%; justify-content: center; }
      .hero-scroll-hint { display: none; }
      .hero-subtitle { font-size: .92rem; }
    }

    .fab-fb {
  background: #1877F2;
  color: #FFFFFF;
}
.fab-fb:hover {
  background: #0d65d9;
}