/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --red: #dc2626;
  --yellow: #fbbf24;
  --dark: #111827;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

img { max-width: 100%; display: block; }

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  border-radius: 50px;
  padding: 18px 36px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  text-align: center;
  width: 100%;
}
.btn-cta:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-cta:active { transform: translateY(0); }

.btn-hero    { background: linear-gradient(135deg, #ea580c, #dc2626); color: #fff; box-shadow: 0 6px 20px rgba(220,38,38,0.4); font-size: 1.15rem; }
.btn-urgency { background: linear-gradient(135deg, #dc2626, #b91c1c); color: #fff; box-shadow: 0 6px 20px rgba(220,38,38,0.4); }
.btn-offer   { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; box-shadow: 0 6px 20px rgba(22,163,74,0.4); }
.btn-submit  { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; box-shadow: 0 6px 20px rgba(22,163,74,0.4); font-size: 1.2rem; padding: 20px; }
.btn-sticky  { background: linear-gradient(135deg, #ea580c, #dc2626); color: #fff; padding: 12px 24px; font-size: 0.95rem; width: auto; white-space: nowrap; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
  color: #fff;
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(22,163,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Banner imagen mobile — ocupa todo el ancho arriba del hero */
.hero-img-banner {
  display: none;
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0f172a);
}

.hero-container { position: relative; z-index: 1; }

.badge-promo {
  display: inline-block;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,88,12,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(234,88,12,0); }
}

.hero-headline {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #cbd5e1;
  margin-bottom: 32px;
}
.hero-sub strong { color: #4ade80; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Columna imagen desktop */
.hero-left-desktop {
  display: flex;
  align-items: stretch;
}

/* Product image */
.product-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Hero image full — desktop: columna izquierda */
.hero-img-full {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 600px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  display: block;
}
.img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  width: 240px;
  height: 280px;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  gap: 12px;
}
.img-placeholder span { font-size: 4rem; }
.badge-units {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 50px;
}

/* Price box */
.price-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.price-before { margin-bottom: 8px; }
.label-before { font-size: 0.8rem; color: #94a3b8; display: block; }
.strike { font-size: 1.1rem; color: #94a3b8; text-decoration: line-through; }
.label-now { font-size: 0.85rem; color: #86efac; display: block; font-weight: 600; }
.price-big { font-size: clamp(2rem, 6vw, 2.8rem); font-weight: 900; color: #fff; }
.savings-tag {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 50px;
  margin-top: 8px;
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.trust-mini span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #e2e8f0;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 50px;
}

/* Timer */
.timer-wrap { margin-top: 16px; }
.timer-label { font-size: 0.85rem; color: #fbbf24; margin-bottom: 8px; font-weight: 600; }
.timer {
  display: flex;
  align-items: center;
  gap: 6px;
}
.timer-block {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  min-width: 60px;
}
.timer-block span { font-size: 1.6rem; font-weight: 900; color: #fff; display: block; line-height: 1; }
.timer-block small { font-size: 0.65rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }
.timer-sep { font-size: 1.6rem; font-weight: 900; color: #fbbf24; }

.stock-alert {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #fca5a5;
  font-weight: 600;
}

/* ===== INTEREST ===== */
.interest {
  padding: 64px 0;
  background: var(--light);
}
.interest h2, .desire h2, .offer-section h2, .faq-section h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}
.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.benefit-item:hover { transform: translateY(-3px); }
.benefit-icon { font-size: 2rem; flex-shrink: 0; }
.benefit-item strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.benefit-item p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ===== DESIRE ===== */
.desire { padding: 64px 0; background: var(--white); }

.social-proof-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #fef9c3, #fef3c7);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 48px;
}
.social-proof-banner .stars { font-size: 1.4rem; }
.social-proof-banner strong { font-size: 1.1rem; }
.rating-text { font-size: 0.85rem; color: var(--gray); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.testimonial {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow);
}
.t-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 10px; }
.testimonial p { font-size: 0.9rem; color: #374151; font-style: italic; margin-bottom: 16px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.9rem; }
.t-author small { font-size: 0.75rem; color: var(--gray); }

/* Diferenciadores */
.diff-section { margin-bottom: 56px; }
.diff-section h2 { margin-bottom: 28px; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.diff-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.diff-item:hover { transform: translateY(-3px); }
.diff-item span { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.diff-item strong { display: block; margin-bottom: 6px; font-size: 0.95rem; }
.diff-item p { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.stat-item { text-align: center; color: #fff; }
.stat-num { font-size: 2.4rem; font-weight: 900; color: #4ade80; display: block; }
.stat-item p { font-size: 0.82rem; color: #94a3b8; margin: 4px 0 0; }

/* ===== URGENCY ===== */
.urgency {
  background: linear-gradient(135deg, #7f1d1d, #991b1b);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.urgency-text { font-size: 1.3rem; margin-bottom: 8px; }
.urgency-sub { font-size: 0.9rem; color: #fca5a5; margin-bottom: 20px; }
.timer-big .timer-block { background: rgba(255,255,255,0.12); min-width: 72px; }
.timer-big .timer-block span { font-size: 2rem; }
.timer-big { justify-content: center; margin-bottom: 28px; }
.btn-urgency { max-width: 480px; }

/* ===== OFFER ===== */
.offer-section { padding: 64px 0; background: var(--light); }
.offer-section h2 { margin-bottom: 28px; }

.offer-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 2px solid #d1fae5;
}
.offer-visual { position: relative; text-align: center; }
.offer-img { max-height: 200px; object-fit: contain; }
.offer-img-placeholder { font-size: 3rem; }
.offer-badge-2x1 {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.offer-list { list-style: none; margin-bottom: 20px; }
.offer-list li { padding: 8px 0; font-size: 0.95rem; border-bottom: 1px solid #f3f4f6; }
.offer-list li:last-child { border: none; }

.offer-price-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.offer-before { font-size: 0.9rem; color: var(--gray); }
.offer-now { font-size: 2rem; font-weight: 900; color: var(--green); }
.offer-save {
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ===== FORM ===== */
.form-section {
  padding: 64px 0;
  background: linear-gradient(160deg, #0f172a, #1e3a5f);
  color: #fff;
}
.form-header { text-align: center; margin-bottom: 36px; }
.form-header h2 { color: #fff; margin-bottom: 8px; }
.form-header p { color: #94a3b8; }
.form-price-reminder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 24px;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #e2e8f0;
}
.form-price-reminder strong { font-size: 1.3rem; color: #4ade80; }

.order-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: #374151; }
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: #fff;
  color: var(--dark);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}
.form-group input.invalid,
.form-group select.invalid { border-color: var(--red); }
.error-msg { font-size: 0.75rem; color: var(--red); margin-top: 4px; min-height: 16px; }

.form-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
}
.form-trust span { font-size: 0.85rem; color: #166534; font-weight: 600; }

.form-disclaimer { text-align: center; font-size: 0.75rem; color: var(--gray); margin-top: 12px; }

.form-success {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 32px;
  max-width: 480px;
  margin: 0 auto;
  color: var(--dark);
}
.success-icon { font-size: 4rem; display: block; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--green); }
.form-success p { color: var(--gray); }

/* ===== FAQ ===== */
.faq-section { padding: 64px 0; background: var(--white); }
.faq-section h2 { margin-bottom: 32px; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  gap: 12px;
}
.faq-q span { font-size: 1.4rem; color: var(--green); flex-shrink: 0; transition: transform 0.2s; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #64748b;
  text-align: center;
  padding: 32px 20px;
  font-size: 0.82rem;
}
.footer p + p { margin-top: 8px; }
.footer-disclaimer { max-width: 560px; margin: 8px auto 0; }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0f172a;
  border-top: 2px solid rgba(255,255,255,0.08);
  padding: 12px 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-text { color: #fff; }
.sticky-text strong { display: block; font-size: 1rem; }
.sticky-text small { font-size: 0.75rem; color: #94a3b8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero { padding: 0 0 40px; }

  /* Mobile: imagen centrada, tamaño moderado */
  .hero-img-banner { display: block; }
  .hero-banner-img {
    width: 88%;
    margin: 0 auto;
    display: block;
    height: auto;
    object-fit: contain;
  }
  .hero-container { padding-top: 20px; }
  .hero-content { grid-template-columns: 1fr; gap: 16px; }
  .hero-left-desktop { display: none; } /* imagen ya está arriba como banner */
  .hero-right { order: 1; }

  /* Headline más compacto en mobile */
  .hero-headline { font-size: 1.55rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .order-form { padding: 24px 16px; }

  .offer-box { grid-template-columns: 1fr; }
  .offer-visual { display: none; }

  .sticky-inner { flex-direction: column; gap: 8px; }
  .btn-sticky { width: 100%; text-align: center; }

  .timer-big .timer-block { min-width: 60px; }
  .timer-big .timer-block span { font-size: 1.6rem; }

  body { padding-bottom: 100px; }
}

@media (max-width: 400px) {
  .hero-headline { font-size: 1.6rem; }
  .price-big { font-size: 2rem; }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-bounce 2.5s infinite;
}
.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-label { white-space: nowrap; }

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* En móvil, sube el botón para no tapar el sticky CTA */
@media (max-width: 640px) {
  .whatsapp-btn {
    bottom: 110px;
    right: 12px;
    padding: 12px;
    border-radius: 50%;
  }
  .whatsapp-label { display: none; }
}

/* ===== PACKS GRID ===== */
.packs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 8px;
}

.pack-card {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s;
}
.pack-card:hover { transform: translateY(-4px); }

/* Tarjeta destacada */
.pack-featured {
  border-color: var(--green);
  box-shadow: 0 8px 40px rgba(22,163,74,0.2);
  transform: scale(1.03);
}
.pack-featured:hover { transform: scale(1.03) translateY(-4px); }

.pack-badge-rec {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pack-badge-save {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 50px;
}

.pack-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.pack-img { max-height: 140px; object-fit: contain; }
.pack-img-placeholder { font-size: 3rem; line-height: 1; }

.pack-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--dark);
}
.pack-units {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.pack-price {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
}
.pack-price-wrap { margin-bottom: 16px; }
.pack-before { font-size: 0.85rem; color: var(--gray); display: block; margin-bottom: 2px; }
.pack-price-big { font-size: 2.2rem; color: var(--green); margin-bottom: 0; }

.pack-list {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.pack-list li { padding: 6px 0; border-bottom: 1px solid #f3f4f6; color: #374151; }
.pack-list li:last-child { border: none; }
.pack-list-no { color: #9ca3af !important; }

.btn-pack-basic {
  background: #f3f4f6;
  color: var(--dark);
  box-shadow: none;
  border: 2px solid #e5e7eb;
  font-size: 0.95rem;
}
.btn-pack-basic:hover { background: #e5e7eb; box-shadow: none; filter: none; }

.pack-free-ship {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 700;
}

/* Banner pack seleccionado en formulario */
.selected-pack-banner {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #166534;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 600px) {
  .packs-grid {
    grid-template-columns: 1fr;
  }
  .pack-featured {
    transform: scale(1);
    order: -1; /* Recomendado primero en móvil */
  }
  .pack-featured:hover { transform: translateY(-4px); }
}

/* ===== HERO PACKS ===== */
.hero-pick-label {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-pack {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.hero-pack:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

.hero-pack.active-pack {
  border-color: #4ade80;
  background: rgba(74,222,128,0.08);
}

.hero-pack-rec { position: relative; }

.hero-pack-badge-rec {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.hero-pack-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.hero-pack-info { display: flex; flex-direction: column; gap: 4px; }
.hero-pack-name { font-size: 0.88rem; color: #e2e8f0; font-weight: 600; }
.hero-pack-price { font-size: 1.5rem; font-weight: 900; color: #fff; }
.hero-pack-price-big { font-size: 1.8rem; color: #4ade80; }
.hero-pack-prices { display: flex; align-items: center; gap: 8px; }
.hero-pack-before { font-size: 0.85rem; color: #64748b; }

.hero-pack-perks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.hero-pack-perks span { font-size: 0.75rem; color: #94a3b8; }

.btn-pack-hero-basic {
  background: rgba(255,255,255,0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  padding: 12px;
  box-shadow: none;
}
.btn-pack-hero-basic:hover { background: rgba(255,255,255,0.18); box-shadow: none; filter: none; }

/* Pack seleccionado en sección oferta */
.pack-card.pack-selected {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.2);
}

@media (max-width: 640px) {
  .hero-pack-perks { text-align: left; flex-direction: row; flex-wrap: wrap; }
  .hero-pack-inner { flex-direction: column; }
}
