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

:root {
  --rojo: #cc0000;
  --rojo-oscuro: #990000;
  --amarillo: #FFD700;
  --negro: #0a0a0a;
  --gris-oscuro: #1a1a1a;
  --gris: #2a2a2a;
  --blanco: #ffffff;
  --verde-wa: #25D366;
  --verde-wa-hover: #1da851;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--negro); color: var(--blanco); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BARRA SUPERIOR FIJA (topbar + header pegados, un solo sticky) ===== */
.site-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--negro);
  color: var(--blanco);
  padding: 8px 0;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.tb-sep { opacity: 0.5; }

/* ===== HEADER ===== */
.header {
  position: relative;
  background: var(--blanco);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo-text { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; color: var(--negro); }
.logo-red { color: var(--rojo); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--negro); text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.nav a:hover { color: var(--rojo); }
.btn-nav { background: var(--negro) !important; color: var(--blanco) !important; padding: 9px 20px; border-radius: 2px; font-weight: 700 !important; }

/* ===== CARRITO ===== */
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
}
.cart-icon-btn-mobile { display: none; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--rojo);
  color: var(--blanco);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-overlay, .checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cart-overlay.open, .checkout-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #111;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cart-drawer-header h3 { font-family: 'Oswald', sans-serif; color: var(--blanco); }
.cart-close {
  background: none;
  border: none;
  color: var(--blanco);
  font-size: 1.2rem;
  cursor: pointer;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.cart-empty { color: rgba(255,255,255,0.5); text-align: center; margin-top: 40px; }
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-item-info { display: flex; flex-direction: column; gap: 3px; }
.cart-item-info strong { color: var(--blanco); font-size: 0.9rem; }
.cart-item-info span { color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.cart-item-price { color: var(--rojo) !important; font-weight: 700; }
.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 1rem;
}
.cart-footer {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cart-total {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--blanco);
  margin-bottom: 14px;
}
.cart-total span { color: var(--rojo); font-weight: 900; }
.cart-checkout-btn { width: 100%; text-align: center; margin: 0; background: var(--verde-wa); color: var(--blanco); }
.cart-checkout-btn:hover { background: var(--verde-wa-hover); }

/* ===== CHECKOUT MODAL ===== */
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 92%;
  max-width: 480px;
  max-height: 88vh;
  overflow-y: auto;
  background: #111;
  border-radius: 12px;
  z-index: 2002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.checkout-modal.open { opacity: 1; pointer-events: auto; }
.checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.checkout-modal-header h3 { font-family: 'Oswald', sans-serif; color: var(--blanco); }
.checkout-form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.checkout-form input {
  background: var(--negro);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--blanco);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 0.9rem;
}
.checkout-summary {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.checkout-submit-btn {
  width: 100%;
  text-align: center;
  margin: 0;
  background: var(--verde-wa);
  color: var(--blanco);
}
.checkout-submit-btn:hover { background: var(--verde-wa-hover); }
.checkout-nota { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; }

/* ===== OFERTAS POR CANTIDAD ===== */
.tiers-section {
  padding: 70px 0;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
  border-top: 3px solid var(--amarillo);
  border-bottom: 3px solid var(--amarillo);
}
.tiers-group { margin-top: 40px; }

/* ===== OFERTAS ESTILO RADIO (referencia) ===== */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 64px 1fr auto;
  align-items: center;
  gap: 14px;
  background: #141414;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.offer-option:has(input:checked) {
  border-color: var(--amarillo);
  background: #1a1a10;
}
.offer-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--rojo);
}
.offer-option img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}
.offer-ribbon {
  position: absolute;
  top: -10px;
  right: 14px;
  background: #333;
  color: var(--blanco);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 4px;
}
.offer-ribbon-popular { background: var(--amarillo); color: var(--negro); }
.offer-ribbon-best { background: var(--rojo); }
.offer-option-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.offer-option-info strong {
  font-family: 'Oswald', sans-serif;
  color: var(--blanco);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.offer-save {
  font-size: 0.75rem;
  color: var(--amarillo);
  font-weight: 700;
}
.offer-option-price {
  text-align: right;
  white-space: nowrap;
}
.offer-price-old {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.offer-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--rojo);
}
.offer-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin: 18px 0 0;
  background: var(--verde-wa) !important;
  color: var(--blanco) !important;
  border-radius: 30px;
}
.offer-cta:hover { background: var(--verde-wa-hover) !important; }
.offer-packs-ctas {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.offer-packs-ctas .offer-cta { margin-top: 0; }
@media (max-width: 640px) {
  .offer-packs-ctas { flex-direction: column; }
}

/* ===== INSIGNIAS DE CONFIANZA ===== */
.trust-section { padding: 50px 0; background: var(--negro); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
}
.trust-badge-full { grid-column: 1 / -1; justify-content: center; text-align: center; }
.trust-icon { font-size: 1.8rem; }
.trust-badge strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  color: var(--blanco);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.trust-badge span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

/* ===== BARRA FIJA INFERIOR "FINALIZAR COMPRA" ===== */
.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--verde-wa);
  color: var(--blanco);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.3);
}
.sticky-bottom-cta:hover { background: var(--verde-wa-hover); }
.sticky-bottom-cta svg { width: 22px; height: 22px; flex-shrink: 0; }
body { padding-bottom: 62px; }
.tiers-group-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--blanco);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier-card {
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 26px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.tier-card-popular { border: 2px solid var(--amarillo); }
.tier-card-best { border: 2px solid var(--rojo); box-shadow: 0 0 30px rgba(204,0,0,0.2); }
.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amarillo);
  color: var(--negro);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-card-best .tier-badge { background: var(--rojo); color: var(--blanco); }
.tier-qty {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.tier-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--rojo);
  line-height: 1;
}
.tier-price sup { font-size: 1rem; }
.tier-extra {
  font-size: 0.8rem;
  color: var(--amarillo);
  font-weight: 700;
}
.tier-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--verde-wa);
  color: var(--blanco);
  font-weight: 700;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 6px;
}
.tier-btn:hover { background: var(--verde-wa-hover); }

/* ===== CATEGORÍAS ===== */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 10px;
}
.category-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.category-tab.active {
  background: var(--rojo);
  border-color: var(--rojo);
  color: var(--blanco);
}
.btn-nav:hover { background: var(--rojo) !important; }
.hamburger { display: none; background: none; border: none; color: var(--negro); font-size: 1.5rem; cursor: pointer; }
.mobile-nav { display: none; flex-direction: column; background: var(--blanco); padding: 12px 20px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.mobile-nav a { color: var(--negro); text-decoration: none; font-weight: 700; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; }
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero {
  background: var(--blanco);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bigimage {
  min-height: 85vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--rojo);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-title-big {
  font-family: 'Oswald', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--blanco);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero-red {
  color: var(--rojo);
}
.hero-price-inline {
  font-size: 1.2em;
  color: var(--amarillo);
  display: block;
  margin-top: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
}
.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blanco);
  margin-bottom: 20px;
}
.hero-details {
  display: none;
}
.hero-gift {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-gift span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--negro);
  color: var(--blanco);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 2px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hero-price-big {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}
.price-big {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--rojo);
  line-height: 1;
}
.price-big sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.price-save {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--amarillo);
  font-weight: 700;
  background: rgba(204,0,0,0.3);
  padding: 6px 12px;
  border-radius: 4px;
}
.btn-big {
  display: inline-block;
  background: var(--blanco);
  color: var(--negro);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  margin-bottom: 24px;
  width: fit-content;
}
.btn-big:hover {
  background: var(--amarillo);
  transform: translateX(4px);
}
.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blanco);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
  margin-top: 4px;
}
.hero-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
}
.hero-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.hcard {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
  text-decoration: none;
  transition: transform 0.3s;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.hcard:hover { transform: scale(1.05); }
.hcard-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--amarillo);
  color: var(--negro);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  z-index: 2;
}
.hcard-featured { border: 2px solid var(--rojo); }
.hcard-img-wrap {
  flex: 1.2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}
.hcard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hcard-foot {
  background: rgba(10,10,10,0.95);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex: 0.8;
}
.hcard-dot {
  display: none;
}
.dot-n { background: #333; }
.dot-w { background: #eee; }
.dot-r { background: var(--rojo); }
.hcard-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hcard-info strong { font-size: 0.9rem; color: var(--blanco); }
.hcard-info span { font-size: 0.75rem; opacity: 0.7; }
.hcard-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rojo);
}

/* ===== COMBOS CARDS (estilo Adidas) ===== */
.combos-section {
  padding: 70px 0;
  background: var(--negro);
}
.combos-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 2px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.combos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.combo-card {
  display: flex;
  flex-direction: column;
  background: #111;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, border-color 0.3s;
}
.combo-card:hover {
  transform: translateY(-6px);
  border-color: var(--rojo);
}
.combo-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #0a0a0a;
}
.combo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.combo-card-img-flyer {
  aspect-ratio: 3/4;
}
.combo-card-img-flyer img {
  object-fit: contain;
}
.combo-card:hover .combo-card-img img {
  transform: scale(1.05);
}
.combo-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.combo-card-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--blanco);
  letter-spacing: 1px;
}
.combo-card-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.combo-card-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rojo);
}
.combo-card-btn {
  display: inline-block;
  background: var(--blanco);
  color: var(--negro);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  margin-top: 8px;
  align-self: flex-start;
  letter-spacing: 1px;
  font-size: 0.85rem;
}
.combo-card:hover .combo-card-btn {
  background: var(--rojo);
  color: var(--blanco);
}

.price-old {
  opacity: 0.5;
  font-size: 0.7em;
  margin-right: 6px;
}
.combo-oferta {
  background: var(--amarillo);
  color: var(--negro);
  font-size: 0.5em;
  padding: 3px 10px;
  border-radius: 4px;
  vertical-align: middle;
  letter-spacing: 1px;
}

/* ===== DEMO VIDEO SECTION ===== */
.demo-video-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
}
.demo-video-container {
  max-width: 900px;
}
.demo-video-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.demo-video-header {
  text-align: center;
}
.demo-video-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 8px;
}
.demo-video-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}
.demo-video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(204, 0, 0, 0.25);
  border: 3px solid var(--rojo);
  object-fit: cover;
  aspect-ratio: 16/9;
}

@media (max-width: 768px) {
  .demo-video-section { padding: 40px 0; }
  .demo-video-header h2 { font-size: 1.6rem; }
  .demo-video-header p { font-size: 0.9rem; }
  .demo-video { border-width: 2px; }
}

/* ===== VIP BANNER ===== */
.vip-banner {
  background: linear-gradient(90deg, rgba(204,0,0,0.1) 0%, rgba(204,0,0,0.05) 100%);
  border-top: 2px solid var(--rojo);
  border-bottom: 2px solid var(--rojo);
  padding: 20px 0;
  margin: 40px 0;
}
.vip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.vip-icon {
  font-size: 2rem;
}
.vip-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vip-text strong { font-size: 1.1rem; color: var(--amarillo); }
.vip-text span { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.btn-vip {
  background: var(--rojo);
  color: var(--blanco);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
}
.btn-vip:hover { background: var(--rojo-oscuro); }

/* ===== VIP PROGRAM SECTION ===== */
.vip-program {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(204,0,0,0.1) 0%, rgba(204,0,0,0.05) 100%);
  border-top: 2px solid var(--rojo);
  border-bottom: 2px solid var(--rojo);
}
.vip-program-header {
  text-align: center;
  margin-bottom: 60px;
}
.vip-program-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.vip-program-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.vip-highlight {
  color: var(--rojo);
}
.vip-program-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}
.vip-program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.vip-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--rojo);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all 0.3s;
}
.vip-card:hover {
  background: rgba(204,0,0,0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.15);
}
.vip-card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.vip-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vip-card-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blanco);
}
.vip-card-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.vip-card-content strong {
  color: var(--rojo);
  font-weight: 700;
}
.vip-cta-banner {
  background: linear-gradient(90deg, rgba(204,0,0,0.15) 0%, rgba(204,0,0,0.08) 100%);
  border: 2px solid var(--rojo);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.vip-cta-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 12px;
}
.vip-cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.vip-cta-content strong {
  color: var(--rojo);
}
.btn-vip-cta {
  padding: 16px 40px !important;
  font-size: 1rem !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== RESPONSIVE VIP ===== */
@media (max-width: 768px) {
  .vip-program {
    padding: 50px 0;
  }
  .vip-program-header {
    margin-bottom: 40px;
  }
  .vip-program-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }
  .vip-program-title {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  .vip-program-subtitle {
    font-size: 0.95rem;
  }
  .vip-program-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  .vip-card {
    padding: 20px;
    gap: 16px;
  }
  .vip-card-icon {
    font-size: 2rem;
  }
  .vip-card-content h3 {
    font-size: 1rem;
  }
  .vip-card-content p {
    font-size: 0.85rem;
  }
  .vip-cta-banner {
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    border-radius: 8px;
  }
  .vip-cta-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  .vip-cta-content p {
    font-size: 0.9rem;
  }
  .btn-vip-cta {
    width: 100% !important;
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
  }
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amarillo);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.ft-rojo { color: var(--rojo); }
.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

/* ===== FLYER SECTION ===== */
.flyer-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
}
.flyer-container { }
.flyer-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}
.ftab {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.ftab:hover { border-color: var(--rojo); color: var(--rojo); transform: scale(1.05); }
.ftab-active {
  background: var(--rojo);
  color: var(--blanco);
  border-color: var(--rojo);
  box-shadow: 0 0 20px rgba(204,0,0,0.5);
}
.flyer-panel {
  display: none;
  width: 100%;
}
.flyer-panel.flyer-hidden {
  display: none !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.flyer-panel:not(.flyer-hidden) {
  display: block;
  width: 100%;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.flyer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: start;
}
.flyer-img-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.flyer-info-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.flyer-combo-header {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rojo);
  margin-bottom: 16px;
}
.flyer-combo-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.fci {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border-left: 3px solid var(--rojo);
}
.fci-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.fci-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fci-text strong { font-size: 0.9rem; }
.fci-text span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.fci-check {
  color: var(--verde-wa);
  font-size: 1.2rem;
  font-weight: 700;
}
.fci-regalo {
  border-left-color: var(--amarillo);
}
.fci-regalo-icon {
  font-size: 1.5rem;
  margin-right: 4px;
}
.flyer-price-col {
  padding: 20px;
  background: rgba(204,0,0,0.15);
  border-radius: 8px;
  border: 1px solid var(--rojo);
  margin-bottom: 20px;
}
.fp-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.fp-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rojo);
  margin-bottom: 8px;
}
.fp-contra {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blanco);
  margin-bottom: 6px;
}
.fp-envio {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}
.flyer-tallas-row-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.talla-label { font-weight: 600; }
.flyer-tallas-row-inline span {
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-weight: 600;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--verde-wa);
  color: var(--blanco);
  padding: 14px 24px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-size: 0.95rem;
}
.btn-wa:hover { background: var(--verde-wa-hover); transform: scale(1.05); }
.btn-wa svg { width: 18px; height: 18px; }
.flyer-cta { width: 100%; }

/* ── FLYER CARD "PAQUETE DEPORTIVO" ── */
.fpq-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #111;
  max-width: 400px;
  margin: 0 auto;
}
.fpq-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.fpq-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.fpq-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  text-align: center;
}
.fpq-badge-title {
  background: #111;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 6px 10px 4px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  border: 2px solid var(--rojo);
}
.fpq-badge-sub {
  background: var(--rojo);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 6px;
  margin-top: 3px;
  border-radius: 2px;
}
.fpq-callouts {
  position: absolute;
  left: 10px;
  top: 22%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18%;
}
.fpq-cl {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.fpq-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  border: 1px solid rgba(255,255,255,0.4);
}
.fpq-cl-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.52rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}
.fpq-cr {
  position: absolute;
  right: 10px;
  top: 38%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fpq-cr-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.52rem;
  color: #fff;
  line-height: 1.25;
  text-align: right;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}
.fpq-price-circle {
  position: absolute;
  bottom: 21%;
  right: 10px;
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 60%, #cc0000 100%);
  border: 3px solid var(--rojo);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fpq-price-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.fpq-price-main sup {
  font-size: 0.6rem;
  vertical-align: super;
}
.fpq-price-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.38rem;
  color: var(--amarillo);
  line-height: 1.2;
  margin-top: 2px;
}
.fpq-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: #0d0d0d;
  text-align: center;
  padding: 8px 10px 10px;
  border-radius: 0 0 12px 12px;
}
.fpq-gratis {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}
.fpq-entrega {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.fpq-nacional {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--rojo);
  letter-spacing: 0.5px;
}

/* ===== PAQUETE SECTION ===== */
.paquete-section {
  padding: 80px 0;
}
.pq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pq-flyer {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pq-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}
.pq-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}
.pq-top-bar {
  position: relative;
  z-index: 2;
  background: var(--rojo);
  color: var(--blanco);
  padding: 12px 16px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}
.pq-top-bar-white {
  background: rgba(255,255,255,0.95);
  color: var(--negro);
}
.pq-popular-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--amarillo);
  color: var(--negro);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
}
.pq-flyer-center { transform: scale(1.08); }
.pq-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.pq-outfit-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  color: var(--amarillo);
  font-weight: 700;
  letter-spacing: 1px;
}
.pq-3prod {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--blanco);
  font-weight: 600;
}
.pq-big-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--blanco);
  font-weight: 700;
  line-height: 1;
}
.pq-big-price sup {
  font-size: 1rem;
  vertical-align: super;
}
.pq-envio {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
}
.pq-btn {
  position: relative;
  z-index: 2;
  background: var(--rojo);
  color: var(--blanco);
  padding: 12px 20px;
  border-radius: 0;
  text-decoration: none;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.pq-btn:hover { background: var(--rojo-oscuro); }

/* ===== PRODUCTOS SECTION ===== */
.productos-section {
  padding: 80px 0;
  background: rgba(204,0,0,0.08);
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.prod-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}
.prod-card:hover { transform: translateY(-4px); }
.prod-img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #111;
}
.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.prod-img-chompa { object-position: 50% 58% !important; }
.prod-img-gorra { object-position: 50% 8% !important; }
.prod-info {
  padding: 20px;
}
.prod-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blanco);
}
.prod-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.4;
}
.prod-precio-badge {
  background: linear-gradient(90deg, var(--rojo), rgba(204,0,0,0.8));
  color: var(--blanco);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
}
.prod-precio-unidad {
  font-size: 0.65rem;
  display: block;
  margin-top: 2px;
  opacity: 0.9;
}
.prod-ahorro-banner {
  background: linear-gradient(90deg, var(--rojo), rgba(204,0,0,0.7));
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}
.prod-ahorro-math {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ahorro-line {
  line-height: 1.5;
  font-weight: 600;
}
.ahorro-line s {
  text-decoration: line-through;
  opacity: 0.7;
}
.ahorro-descuento {
  background: rgba(255,255,255,0.15);
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amarillo);
  border: 2px solid var(--amarillo);
}
.ahorro-descuento strong {
  font-size: 1.3rem;
  color: var(--amarillo);
}
.prod-ahorro-math strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--amarillo);
  margin-top: 12px;
  letter-spacing: 1px;
}
.prod-ahorro-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* ===== TERNO DEPORTIVO ===== */
.terno-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1005 50%, #0a0a0a 100%);
  border-top: 3px solid var(--amarillo);
  border-bottom: 3px solid var(--amarillo);
  padding: 70px 0;
}
.terno-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.terno-img img {
  width: 100%;
  border-radius: 14px;
  border: 2px solid rgba(255,215,0,0.35);
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}
.terno-label {
  font-family: 'Oswald', sans-serif;
  color: var(--amarillo);
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 0.9rem;
}
.terno-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--blanco);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.terno-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 20px;
}
.terno-price-box {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--rojo), #660000);
  border-radius: 10px;
  padding: 12px 28px;
  margin-bottom: 18px;
}
.terno-price-label {
  font-family: 'Oswald', sans-serif;
  color: var(--blanco);
  letter-spacing: 2px;
  font-size: 0.8rem;
}
.terno-price {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--blanco);
  line-height: 1;
}
.terno-price sup { font-size: 1.2rem; }
.terno-regalo {
  display: inline-block;
  background: var(--negro);
  border: 1px solid var(--amarillo);
  color: var(--amarillo);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.terno-tela {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.terno-tela-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--blanco);
}
.terno-tela-sub {
  color: var(--amarillo);
  font-size: 0.85rem;
  font-weight: 600;
}
.terno-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.terno-features span {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.terno-color {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.terno-color strong { color: var(--blanco); }
.terno-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* ===== FLYER PROMO SECTIONS (imagenes completas de combos) ===== */
.flyer-promo-section {
  background: var(--negro);
  padding: 50px 0;
  border-top: 2px solid rgba(255,215,0,0.25);
  border-bottom: 2px solid rgba(255,215,0,0.25);
}
.flyer-promo-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.flyer-promo-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.flyer-promo-btn {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}
.promo-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: var(--amarillo);
  letter-spacing: 0.5px;
}
.promo-copy {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.promo-copy strong { color: var(--blanco); }
.promo-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}
.promo-bullets li {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
/* ===== PRICING CARDS (PACKS) ===== */
.pricing-section { padding: 60px 0; background: var(--negro); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 40px auto 0;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
.pricing-card {
  background: #131313;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--amarillo);
  box-shadow: 0 25px 60px rgba(255,215,0,0.15), 0 0 0 1px rgba(255,215,0,0.2);
  transform: scale(1.02);
}
.pricing-badge {
  align-self: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
}
.pricing-badge-star { background: var(--amarillo); color: var(--negro); }
.pricing-badge-dark { background: #2a2a2a; color: var(--amarillo); border: 1px solid rgba(255,215,0,0.4); }
.pricing-flyer-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  margin-top: 6px;
}
.pricing-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: var(--blanco);
  text-transform: uppercase;
}
.pricing-price {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  color: var(--rojo);
  line-height: 1;
}
.pricing-price span { font-size: 1.6rem; }
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #0d0d0d;
  border-radius: 10px;
}
.pricing-list li {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blanco);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-check {
  color: var(--verde-wa);
  font-weight: 900;
  flex-shrink: 0;
}
.pricing-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-trust li {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}
.pricing-trust strong { color: var(--amarillo); }
.pricing-picker { background: transparent; border: none; padding: 0; }
.pricing-cta {
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  padding: 18px 20px;
  background: var(--verde-wa) !important;
  color: var(--blanco) !important;
  border-radius: 30px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.pricing-cta:hover { background: var(--verde-wa-hover) !important; transform: scale(1.03); }
@media (max-width: 767px) {
  .pricing-card-featured { transform: none; }
}

.combo-picker {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.combo-picker-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--amarillo);
  font-size: 0.85rem;
  text-align: center;
}
.combo-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.combo-item-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.combo-item-row {
  display: flex;
  gap: 8px;
}
.combo-item-color, .combo-item-size {
  flex: 1;
  background: var(--negro);
  color: var(--blanco);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.combo-picker-btn { margin-top: 4px; }

.combo-card-featured {
  border: 2px solid var(--amarillo);
  box-shadow: 0 0 30px rgba(255,215,0,0.15);
}

/* ===== CATÁLOGO TALLA Y COLOR ===== */
.catalog-section {
  padding: 80px 0;
  background: var(--negro);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.catalog-card {
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.catalog-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #0a0a0a;
}
.catalog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--blanco);
  letter-spacing: 0.5px;
}
.catalog-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--rojo);
}
.catalog-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: -4px 0 4px;
}
.catalog-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.catalog-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 48px;
}
.color-swatch img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s;
}
.color-swatch.active img {
  border-color: var(--rojo);
  box-shadow: 0 0 0 2px rgba(204,0,0,0.3);
}
.color-swatch span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.1;
}
.color-swatch.active span {
  color: var(--blanco);
  font-weight: 700;
}
.catalog-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.size-btn {
  position: relative;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.size-btn.active {
  background: var(--rojo);
  border-color: var(--rojo);
  color: var(--blanco);
}
.size-btn.agotado {
  color: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.1);
  text-decoration: line-through;
  cursor: not-allowed;
  background: transparent;
}
.catalog-stock-note {
  font-size: 0.7rem;
  color: var(--amarillo);
  font-weight: 600;
}
.catalog-btn {
  display: block;
  text-align: center;
  background: var(--verde-wa);
  color: var(--blanco);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 4px;
}
.catalog-btn:hover { background: var(--verde-wa-hover); }
.catalog-btn-agotado {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.4) !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
.producto-agotado .catalog-img { filter: grayscale(1) brightness(0.55); }
.producto-agotado::after {
  content: 'AGOTADO';
  position: absolute;
  top: 14px;
  left: -32px;
  background: var(--rojo);
  color: var(--blanco);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 4px 40px;
  transform: rotate(-40deg);
  z-index: 5;
}

/* ===== PORQUE SECTION ===== */
.porque-section {
  padding: 80px 0;
}
.porque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pq-why {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border-left: 4px solid var(--rojo);
}
.pq-why-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.pq-why strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.pq-why p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ===== COMO SECTION ===== */
.como-section {
  padding: 80px 0;
  background: rgba(204,0,0,0.08);
}
.como-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.como-step {
  flex: 1;
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid var(--rojo);
}
.como-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rojo);
  min-width: 60px;
}
.como-text strong {
  display: block;
  margin-bottom: 4px;
}
.como-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.como-arrow {
  font-size: 1.5rem;
  color: var(--rojo);
  align-self: center;
}

/* ===== SIN RIESGO SECTION ===== */
.sin-riesgo {
  padding: 80px 0;
}
.riesgo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.riesgo-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border-left: 4px solid var(--verde-wa);
}
.ri-check {
  font-size: 1.8rem;
  color: var(--verde-wa);
  flex-shrink: 0;
}
.riesgo-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.riesgo-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.regalo-aviso {
  background: rgba(204,0,0,0.15);
  border: 1px solid var(--rojo);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

/* ===== URGENCIA SECTION ===== */
.urgencia-section {
  padding: 40px 0;
  background: linear-gradient(90deg, rgba(204,0,0,0.2), rgba(204,0,0,0.1));
  border-top: 2px solid var(--rojo);
  border-bottom: 2px solid var(--rojo);
}
.urgencia-inner {
  text-align: center;
}
.urgencia-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rojo);
  margin-bottom: 8px;
}
.urgencia-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.faq-q {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  color: var(--blanco);
  border: none;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  font-size: 0.95rem;
}
.faq-q:hover { background: rgba(255,255,255,0.08); }
.faq-item.open .faq-q {
  background: var(--rojo);
}
.faq-arrow {
  display: inline-block;
  transition: transform 0.3s;
  color: var(--rojo);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--blanco);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255,255,255,0.02);
}
.faq-item.open .faq-a {
  max-height: 500px;
}
.faq-a p {
  padding: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 60px 0;
  background: linear-gradient(160deg, rgba(204,0,0,0.2) 0%, rgba(204,0,0,0.1) 100%);
  border-top: 2px solid var(--rojo);
}
.cta-final-inner {
  text-align: center;
}
.cta-final-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--amarillo);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.cta-final-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.cta-final-title span {
  color: var(--rojo);
}
.cta-final-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.btn-cta-final {
  padding: 16px 40px;
  font-size: 1rem;
}
.cta-final-nota {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gris-oscuro);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer a {
  color: var(--rojo);
  text-decoration: none;
  font-weight: 600;
}
.footer a:hover { text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--verde-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
}
.wa-float:hover {
  background: var(--verde-wa-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .terno-inner { grid-template-columns: 1fr; gap: 24px; }
  .terno-title { font-size: 2.4rem; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-price { font-size: 2rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-option { grid-template-columns: auto 52px 1fr; grid-template-rows: auto auto; }
  .offer-option-price { grid-column: 2 / -1; text-align: left; }
  .offer-option img { width: 52px; height: 52px; }
  .sticky-bottom-cta { font-size: 0.75rem; padding: 12px 10px; }
  body { padding-bottom: 66px; }
  .hero { position: relative; min-height: 100vh; background: var(--negro); }
  .hero-bigimage { min-height: 100vh; }
  .hero-bg { position: absolute; top: 0; left: 0; right: 0; height: 56vh; z-index: 0; background: url('images/chompa-negro-clean.jpg') center 35%/cover no-repeat; }
  .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 40%, var(--negro) 100%); }
  .hero-bg-img { display: none; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hero-overlay { background: none; z-index: 1; }
  .hero-content { position: absolute; top: 52vh; left: 0; right: 0; bottom: 0; z-index: 10; max-width: 100%; padding: 20px 20px 30px; }
  .hero-text { gap: 10px; }
  .hero-label { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.4); padding: 4px 10px; border-radius: 20px; font-size: 0.62rem; margin-bottom: 4px; color: var(--blanco) !important; }
  .hero-title-big { font-size: 2.4rem; margin-bottom: 0; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
  .hero-tagline { font-size: 0.9rem; margin-bottom: 4px; }
  .hero-details { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 4px; background: none; padding: 0; width: auto; }
  .hero-price-big { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; background: none; padding: 0; width: auto; }
  .price-big { font-size: 2.2rem; color: var(--blanco); }
  .price-save { display: inline-block; }
  .hero-gift { flex-direction: row; flex-wrap: wrap; gap: 8px; background: none; padding: 0; width: auto; margin-bottom: 8px; }
  .hero-gift span { background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); color: var(--blanco); border: 1px solid rgba(255,255,255,0.35); border-radius: 20px; padding: 6px 12px; font-size: 0.62rem; }
  .hero-benefits { display: none; }
  .btn-big { display: inline-block; background: white; color: black; padding: 13px 26px; font-size: 0.9rem; margin-left: 0; margin-top: 4px; }
  .hero-right { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-title { font-size: 2.2rem; }
  .combos-section { padding: 40px 0; }
  .combos-title { font-size: 1.7rem; text-align: center; }
  .combos-grid { grid-template-columns: 1fr; gap: 16px; }
  .flyer-main { grid-template-columns: 1fr; gap: 20px; }
  .pq-grid { grid-template-columns: 1fr; }
  .pq-flyer-center { transform: scale(1); }
  .prod-grid { grid-template-columns: 1fr; }
  .porque-grid { grid-template-columns: 1fr; }
  .como-steps { flex-direction: column; }
  .como-arrow { transform: rotate(90deg); }
  .riesgo-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .hamburger { display: block; }
  .cart-icon-btn:not(.cart-icon-btn-mobile) { display: none; }
  .cart-icon-btn-mobile { display: block; margin-left: auto; margin-right: 12px; color: var(--negro); }
  .checkout-modal { width: 94%; }
  .mobile-nav { position: absolute; top: 100%; left: 0; right: 0; z-index: 950; box-shadow: 0 12px 24px rgba(0,0,0,0.15); }
  .section-title { font-size: 1.8rem; }
  .hero-price { font-size: 2rem; }
  .flyer-tabs { flex-wrap: wrap; }
  .vip-inner { flex-direction: column; align-items: flex-start; }
}
