@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* MTA Software Style Colors */
  --primary: #F97316;    /* Orange */
  --primary-hover: #EA580C;
  --secondary: #06B6D4;  /* Cyan */
  --secondary-hover: #0891B2;
  
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;

  --bg-body: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-alt: #F9FAFB;

  --text-main: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;

  --border: #E5E7EB;

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-primary: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(#F97316 0.5px, transparent 0.5px), radial-gradient(#06B6D4 0.5px, transparent 0.5px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  background-attachment: fixed;
  /* El efecto confetti de puntos ligeros de la referencia */
}

/* Overlay blanco para suavizar los puntos de fondo */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 { 
  font-weight: 700; 
  line-height: 1.2; 
  color: var(--text-main); 
}

.highlight-orange { color: var(--primary); }
.highlight-cyan { color: var(--secondary); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-pill);
  font-weight: 600; font-family: 'Poppins', sans-serif;
  cursor: pointer; transition: var(--transition); border: none; font-size: 0.95rem;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 15px 20px -3px rgba(249, 115, 22, 0.4); color: #fff; }

.btn-secondary {
  background: #fff; color: var(--secondary); border: 2px solid var(--secondary);
}
.btn-secondary:hover { background: var(--bg-alt); transform: translateY(-2px); }

.btn-danger { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: #fff; }

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo img { height: 45px; display: block; }

.navbar-menu { display: flex; gap: 32px; }
.navbar-menu a {
  font-weight: 500; color: var(--text-secondary); font-size: 0.95rem;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.navbar-menu a:hover, .navbar-menu a.active { color: var(--primary); }

.navbar-actions { display: flex; align-items: center; gap: 16px; }

.btn-login { color: var(--text-main); font-weight: 500; font-size: 0.95rem; }
.btn-login:hover { color: var(--primary); }

.btn-register {
  background: var(--primary); color: #fff; padding: 10px 24px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem; transition: var(--transition);
}
.btn-register:hover { transform: translateY(-2px); box-shadow: var(--shadow-primary); }

/* Dropdown Usuario */
.user-menu { position: relative; cursor: pointer; }
.user-badge {
  display: flex; align-items: center; gap: 10px;
  background: #fff; padding: 6px 16px 6px 6px;
  border-radius: var(--radius-pill); border: 1px solid var(--border);
  transition: var(--transition);
}
.user-badge:hover { border-color: var(--primary); }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.user-name { font-weight: 600; font-size: 0.9rem; color: var(--text-main); }
.dropdown-menu {
  position: absolute; top: 110%; right: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 0; min-width: 220px;
  box-shadow: var(--shadow-hover);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
}
.user-menu:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; color: var(--text-secondary);
  font-size: 0.9rem; font-weight: 500;
}
.dropdown-menu a:hover { background: var(--bg-alt); color: var(--primary); }
.dropdown-menu .divider { height: 1px; background: var(--border); margin: 8px 0; }
.dropdown-menu a.logout { color: var(--danger); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { position: relative; padding: 120px 24px; text-align: center; }
.hero-content { position: relative; z-index: 10; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFF7ED; border: 1px solid #FED7AA; color: #C2410C;
  padding: 8px 20px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.85rem;
  margin-bottom: 32px; text-transform: uppercase; letter-spacing: 0.05em;
}
.hero h1 { font-size: 4rem; margin-bottom: 24px; letter-spacing: -0.02em; color: var(--text-main); }
.hero-sub { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--primary); color: #fff; padding: 16px 40px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1.1rem; transition: var(--transition);
  box-shadow: var(--shadow-primary); display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px -5px rgba(249, 115, 22, 0.4); color: #fff; }
.btn-hero-secondary {
  background: transparent; color: var(--secondary);
  padding: 16px 40px; border-radius: var(--radius-pill); border: 2px solid var(--secondary);
  font-weight: 600; font-size: 1.1rem; transition: var(--transition);
}
.btn-hero-secondary:hover { background: var(--secondary); color: #fff; }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 24px; position: relative; z-index: 20; }
.stats-strip-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--text-main); line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 100px 24px; max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 48px; text-align: center; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.85rem;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-turquoise { background: #ECFEFF; color: #0E7490; border: 1px solid #CFFAFE; }
.badge-purple    { background: #F3E8FF; color: #7E22CE; border: 1px solid #E9D5FF; }
.badge-gold      { background: #FEF3C7; color: #B45309; border: 1px solid #FDE68A; }
.badge-green     { background: #DCFCE7; color: #15803D; border: 1px solid #BBF7D0; }
.badge-orange    { background: #FFF7ED; color: #C2410C; border: 1px solid #FED7AA; }
.badge-dark      { background: #F3F4F6; color: #1F2937; border: 1px solid #E5E7EB; }

.section-title { font-size: 2.5rem; margin-bottom: 16px; color: var(--text-main); }
.section-subtitle { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ── Grid Sorteos ──────────────────────────────────────────── */
.sorteos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }

/* ── Sorteo Card ───────────────────────────────────────────── */
.sorteo-card {
  background: #fff; border-radius: var(--radius-xl); border: 1px solid var(--border);
  overflow: hidden; position: relative; transition: var(--transition);
  box-shadow: var(--shadow); cursor: pointer; display: flex; flex-direction: column;
}
.sorteo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--secondary); }

.sorteo-card-img { width: 100%; height: 260px; object-fit: cover; }
.sorteo-card-img-placeholder {
  width: 100%; height: 260px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--border);
}

.sorteo-card-type {
  position: absolute; top: 20px; left: 20px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(4px); box-shadow: var(--shadow-sm);
}
.type-semanal   { color: var(--secondary); }
.type-quincenal { color: var(--primary); }
.type-mensual   { color: #D97706; }

.sorteo-card-gratis {
  position: absolute; top: 20px; right: 20px;
  background: var(--success); color: #fff; padding: 8px 16px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.sorteo-card-body { padding: 32px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.sorteo-card h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--text-main); }

.sorteo-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; font-weight: 500;
}
.sorteo-card-meta i { font-size: 1.2em; vertical-align: -2px; margin-right: 6px; color: var(--secondary); }

.sorteo-progress { margin-bottom: 24px; }
.progress-label {
  display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 10px;
}
.progress-bar { height: 10px; background: var(--bg-alt); border-radius: var(--radius-pill); overflow: hidden; border: 1px solid var(--border); }
.progress-fill { height: 100%; background: var(--primary); border-radius: var(--radius-pill); }

.sorteo-card-precio {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-alt); padding: 16px 20px; border-radius: var(--radius-lg); margin-bottom: 24px;
}
.precio-valor { font-size: 1.3rem; font-weight: 700; color: var(--text-main); }
.precio-chance { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

.btn-participar {
  width: 100%; background: #fff; color: var(--secondary); border: 2px solid var(--secondary);
  padding: 14px; border-radius: var(--radius-pill); font-weight: 600; font-size: 1.05rem;
  cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
}
.sorteo-card:hover .btn-participar { background: var(--secondary); color: #fff; border-color: var(--secondary); box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3); }

/* ── Form Inputs ───────────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.95rem; color: var(--text-main); display: flex; align-items: center; gap: 8px; }
.form-control {
  width: 100%; background: #fff; border: 1px solid var(--border); color: var(--text-main);
  padding: 14px 16px; border-radius: var(--radius); font-family: 'Poppins', sans-serif; font-size: 1rem;
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1); }

/* ── Auth Cards ────────────────────────────────────────────── */
.auth-page { min-height: 85vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-card {
  width: 100%; max-width: 440px; background: #fff;
  border-radius: var(--radius-xl); border: 1px solid var(--border); padding: 48px 40px;
  box-shadow: var(--shadow-hover);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { height: 50px; }
.auth-title { font-size: 1.8rem; text-align: center; margin-bottom: 12px; color: var(--text-main); }
.auth-sub { text-align: center; color: var(--text-secondary); margin-bottom: 32px; font-size: 0.95rem; }
.auth-divider { text-align: center; position: relative; margin: 32px 0; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border); }
.auth-divider::before { left: 0; } .auth-divider::after { right: 0; }
.auth-switch { text-align: center; font-size: 0.95rem; color: var(--text-secondary); }
.auth-switch a { color: var(--primary); font-weight: 600; }

/* ── Flashes ───────────────────────────────────────────────── */
.flash { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-weight: 500; font-size: 0.95rem; display: flex; align-items: center; gap: 12px; border-left: 4px solid transparent; }
.flash-success { background: #ECFDF5; color: #065F46; border-left-color: #10B981; }
.flash-error   { background: #FEF2F2; color: #991B1B; border-left-color: #EF4444; }
.flash-info    { background: #EFF6FF; color: #1E40AF; border-left-color: #3B82F6; }

/* ── Ganadores Grid ────────────────────────────────────────── */
.ganadores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; }
.ganador-card { background: #fff; border: 1px solid var(--border); padding: 32px 24px; border-radius: var(--radius-xl); text-align: center; transition: var(--transition); box-shadow: var(--shadow); }
.ganador-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.ganador-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--text-main); display: flex; align-items: center; justify-content: center; gap: 8px;}
.ganador-ticket { font-family: monospace; color: var(--secondary); font-weight: 600; font-size: 1.2rem; margin-bottom: 16px; background: #ECFEFF; padding: 4px 12px; border-radius: var(--radius-pill); display: inline-block; }
.ganador-premio { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 16px; }
.ganador-fecha { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: #fff; border-top: 1px solid var(--border); padding: 80px 24px 24px; margin-top: auto; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand img { height: 45px; margin-bottom: 24px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.95rem; max-width: 300px; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 24px; color: var(--text-main); font-weight: 600; }
.footer-col ul li { margin-bottom: 16px; }
.footer-col ul a { color: var(--text-secondary); font-size: 0.95rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--primary); padding-left: 6px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--text-muted); flex-wrap: wrap; gap: 16px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: var(--transition); font-size: 1.3rem; border: 1px solid var(--border); }
.social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-primary); }

/* ── Grids de Sorteos ───────────────────────────────────────── */
.sorteos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; margin-top: 30px;
}
.sorteo-card {
  background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column;
}
.sorteo-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--primary);
}
.sorteo-img-wrap {
  width: 100%; height: 200px; position: relative; background: var(--bg-alt);
}
.sorteo-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.sorteo-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.sorteo-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.sorteo-precio { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.sorteo-meta { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; border-top: 1px solid var(--border); padding-top: 16px; }

/* ── Grids de Suscripciones (Pricing) ───────────────────────── */
.planes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px;
}
.plan-card {
  background: var(--bg-card); border-radius: var(--radius-xl); padding: 40px 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column; position: relative;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.plan-card.popular {
  border: 2px solid var(--primary); transform: scale(1.05); box-shadow: var(--shadow-primary); z-index: 10;
}
.plan-card.popular::before {
  content: "MÁS ELEGIDO"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
}
.plan-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }
.plan-name { font-size: 1.2rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.plan-precio { font-size: 2.5rem; font-weight: 800; color: var(--text-main); margin-bottom: 8px; }
.plan-periodo { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; min-height: 40px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 32px 0; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; color: var(--text-secondary); }
.plan-features .check { color: var(--success); font-weight: 700; }
.plan-features .cross { color: var(--danger); opacity: 0.5; }
.btn-plan {
  width: 100%; padding: 14px; text-align: center; border-radius: var(--radius); font-weight: 600;
  background: var(--primary); color: #fff; text-decoration: none; transition: var(--transition); display: inline-block;
}
.btn-plan:hover { background: var(--primary-hover); }
.btn-plan-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-plan-outline:hover { background: var(--primary); color: #fff; }

/* ── Grids de Ganadores ─────────────────────────────────────── */
.ganadores-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-top: 30px;
}
.ganador-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition); border-left: 4px solid var(--secondary);
}
.ganador-card:hover { transform: translateX(5px); box-shadow: var(--shadow-hover); }
.ganador-name { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.ganador-name i { color: var(--warning); }
.ganador-ticket { font-family: monospace; font-size: 1.1rem; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.ganador-premio { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 16px; }
.ganador-fecha { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   Media Queries - Móvil & Responsivo
   ============================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .navbar-inner {
    padding: 12px 16px;
    position: relative;
  }
  #navbar-toggle {
    display: block !important;
  }
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .navbar-menu.open {
    display: flex;
  }
  .navbar-actions {
    gap: 8px;
  }
  .btn-register {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .btn-login {
    font-size: 0.85rem;
  }

  /* Hero */
  .hero {
    padding: 60px 16px;
  }
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  .btn-hero-primary, .btn-hero-secondary {
    padding: 12px 30px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Stats Strip */
  .stats-strip {
    padding: 24px 16px;
  }
  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }

  /* Section headers */
  .section {
    padding: 48px 16px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Grids */
  .sorteos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .planes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .plan-card.popular {
    transform: scale(1.0);
    margin: 0;
  }
  .plan-card.popular::before {
    top: -12px;
  }
  .ganadores-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-inner {
    padding: 40px 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── Ocultar barra de desplazamiento global ── */
html, body {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE y Edge */
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari y Opera */
}

/* ── Custom Buttons (Membresía y PayPal) ── */
.btn-membresia-premium {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  color: #ffffff !important;
  border: 2.5px solid #00cbd6 !important;
  border-radius: 100px !important;
  padding: 12px 24px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3) !important;
  width: 100% !important;
  cursor: pointer !important;
  text-align: center !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
}
.btn-membresia-premium:hover {
  background: linear-gradient(135deg, #ea580c 0%, #d97706 100%) !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5), 0 0 12px rgba(0, 203, 214, 0.4) !important;
  transform: translateY(-2px) !important;
}
.btn-membresia-premium:active {
  transform: translateY(0) !important;
}

.btn-paypal-premium {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  background: #ffffff !important;
  color: #334155 !important;
  border: 2px dashed #cbd5e1 !important;
  border-radius: 100px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  width: 100% !important;
  cursor: pointer !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}
.btn-paypal-premium:hover {
  background: #f8fafc !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-2px) !important;
}
.btn-paypal-premium:active {
  transform: translateY(0) !important;
}
.btn-paypal-premium img {
  height: 18px !important;
  filter: none !important; /* Quita filter brightness(10) */
  vertical-align: middle !important;
}

