/* ==========================================================================
   ESTILOS DE ALTA CONVERSIÓN - 200 CÓCTELES IRRESISTIBLES
   Inspirado en el diseño Dark Luxury, tipografía Montserrat y máxima persuasión
   Optimizado para Mobile UX/UI y Cartilla Maestra
   ========================================================================== */

:root {
  --bg-primary: #07070f;
  --bg-secondary: #0d0e1a;
  --bg-card: #121324;
  --bg-card-hover: #17192f;
  --bg-dark-blue: #090a1c;
  --bg-badge: #1a1b35;
  
  --accent-gold: #ffc72c;
  --accent-gold-glow: rgba(255, 199, 44, 0.25);
  --accent-amber: #f59e0b;
  --accent-orange: #ff5e36;
  
  --cta-green: #16a018;
  --cta-green-hover: #1cd120;
  --cta-green-shadow: rgba(22, 160, 24, 0.45);
  
  --text-main: #ffffff;
  --text-muted: #a3a8be;
  --text-dim: #717691;
  --text-dark: #121217;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 199, 44, 0.35);
  --border-card: rgba(255, 255, 255, 0.12);
  
  --font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: var(--bg-primary);
  background-image: 
    radial-gradient(60% 40% at 50% 0%, rgba(255, 199, 44, 0.12), transparent 70%),
    radial-gradient(45% 30% at 85% 20%, rgba(255, 94, 54, 0.08), transparent 60%),
    radial-gradient(50% 35% at 15% 60%, rgba(30, 42, 110, 0.25), transparent 70%);
  background-attachment: fixed;
}

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

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

/* ==========================================================================
   1. BARRA DE URGENCIA SUPERIOR (STICKY) - ESTRICTAMENTE 1 LÍNEA EN MOBILE
   ========================================================================== */
.top-banner {
  background: linear-gradient(90deg, #881313 0%, #b91c1c 50%, #881313 100%);
  border-bottom: 1px solid rgba(255, 199, 44, 0.35);
  color: #ffffff;
  height: 38px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding: 0 8px;
}

.top-banner-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-animation 1.5s infinite;
  flex-shrink: 0;
}

.top-banner-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 380px) {
  .top-banner-text {
    font-size: 0.70rem;
  }
}

.top-banner-text strong {
  color: var(--accent-gold);
}

.countdown-timer {
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 7px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  color: var(--accent-gold);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 199, 44, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 380px) {
  .countdown-timer {
    font-size: 0.76rem;
    padding: 1px 5px;
  }
}

/* ==========================================================================
   LAYOUT Y CONTENEDORES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-narrow {
  max-width: 800px;
}

.section-padding {
  padding: 45px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

/* ==========================================================================
   TIPOGRAFÍA Y HEADINGS
   ========================================================================== */
.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 199, 44, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  max-width: 95%;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .badge-pill {
    font-size: 0.76rem;
    padding: 5px 14px;
    letter-spacing: 0.06em;
  }
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

.hero-title .highlight-gold {
  color: var(--accent-gold);
  text-shadow: 0 0 25px rgba(255, 199, 44, 0.35);
}

.hero-subtitle {
  font-size: 0.94rem;
  color: #d1d5e5;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 20px auto;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.08rem;
  }
}

.section-title {
  font-size: 1.45rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.95rem;
  }
}

.section-title .text-gold {
  color: var(--accent-gold);
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 28px auto;
  line-height: 1.5;
}

/* ==========================================================================
   BOTONES DE ACCIÓN (CTA) - 1 LÍNEA DIRECTA + TEXTO EXTERNO
   ========================================================================== */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #18b31a 0%, #138c15 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  border: 1px solid #3be83f;
  box-shadow: 0 8px 24px var(--cta-green-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  width: auto;
  max-width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: cta-pulse 2.2s infinite;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .btn-cta {
    font-size: 0.84rem;
    padding: 12px 16px;
    letter-spacing: 0.01em;
  }
}

.btn-cta:hover {
  background: linear-gradient(180deg, #1ddb20 0%, #16a018 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(22, 160, 24, 0.65);
}

.btn-cta:active {
  transform: translateY(1px) scale(0.99);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(25deg);
  animation: shine-effect 4s infinite;
}

.cta-microtext {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

/* ==========================================================================
   SELLOS DE CONFIANZA
   ========================================================================== */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.trust-item svg {
  color: #22c55e;
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   HERO SECTION & MOCKUP
   ========================================================================== */
.hero-section {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 40px;
  position: relative;
}

.hero-mockup-wrapper {
  position: relative;
  max-width: 380px;
  margin: 25px auto 20px auto;
}

.hero-mockup-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 199, 44, 0.15);
  transition: var(--transition-smooth);
}

.hero-mockup-img:hover {
  transform: scale(1.02) rotate(-0.5deg);
}

.badge-floating {
  position: absolute;
  bottom: -10px;
  right: -6px;
  background: linear-gradient(135deg, #ffc72c, #f59e0b);
  color: var(--text-dark);
  font-weight: 900;
  font-size: 0.74rem;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}

/* ==========================================================================
   SECCIÓN: ¿QUÉ ES LA CARTILLA MAESTRA?
   ========================================================================== */
.what-is-section {
  background: linear-gradient(180deg, rgba(13, 14, 26, 0.8) 0%, rgba(9, 10, 28, 0.95) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.statement-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px auto;
  position: relative;
}

.statement-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 12px;
}

.statement-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SECCIÓN: IDENTIFICACIÓN / DOLORES
   ========================================================================== */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 740px;
  margin: 0 auto 24px auto;
}

.pain-card {
  background: rgba(18, 19, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.pain-card:hover {
  background: rgba(23, 25, 47, 0.95);
  transform: translateX(4px);
  border-color: rgba(239, 68, 68, 0.4);
}

.pain-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #ef4444;
}

.pain-text {
  font-size: 0.90rem;
  font-weight: 600;
  color: #e2e8f0;
  font-style: italic;
  line-height: 1.45;
}

/* ==========================================================================
   SECCIÓN: CONTENIDO INTERNO
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon-box {
  width: 42px;
  height: 42px;
  background: rgba(255, 199, 44, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.feature-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.35;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.48;
}

/* ==========================================================================
   SECCIÓN: CATEGORÍAS & SHOWCASE VISUAL (POSICIONAMIENTO PERFECTO DE DRINKS)
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

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

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.category-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6);
}

.category-img-box {
  position: relative;
  overflow: hidden;
  height: 220px;
}

@media (min-width: 768px) {
  .category-img-box {
    height: 240px;
  }
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Posicionamento calibrado individualmente para cada módulo */
.category-img-classicos {
  object-position: 75% 75%;
}

.category-img-tropical {
  object-position: 70% 75%;
}

.category-img-martinis {
  object-position: 88% 22%;
}

.category-img-longdrinks {
  object-position: 50% 88%;
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 19, 36, 0.95) 100%);
  pointer-events: none;
}

.category-content {
  padding: 16px 18px;
}

.category-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  display: inline-block;
}

.category-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
}

.category-drinks-list {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.48;
}

/* ==========================================================================
   3. SECCIÓN: ORDER BUMPS / COMPLEMENTOS EXCLUSIVOS
   ========================================================================== */
.order-bumps-section {
  background: linear-gradient(180deg, #090a18 0%, #111228 50%, #090a18 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.bumps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .bumps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bump-card {
  background: rgba(18, 19, 36, 0.85);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
}

.bump-card:hover {
  border-color: var(--accent-gold);
  background: rgba(23, 25, 47, 0.95);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 199, 44, 0.1);
}

.bump-badge {
  position: absolute;
  top: -10px;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.bump-img {
  max-width: 150px;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 6px 0 12px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s ease;
}

.bump-card:hover .bump-img {
  transform: scale(1.04);
}

.bump-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
}

.bump-desc {
  font-size: 0.80rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 10px;
  flex-grow: 1;
}

.bump-value-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
}

.bump-regular-price {
  color: #94a3b8;
  text-decoration: line-through;
}

.bump-special-note {
  color: var(--accent-gold);
  font-weight: 700;
}

/* ==========================================================================
   SECCIÓN: TABLA DE PRECIOS & CAJA DE OFERTA
   ========================================================================== */
.pricing-section {
  position: relative;
  padding: 50px 0;
}

.pricing-box {
  background: linear-gradient(180deg, #151733 0%, #0d0f22 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 199, 44, 0.2);
  position: relative;
}

@media (min-width: 640px) {
  .pricing-box {
    padding: 40px 28px;
  }
}

.pricing-header-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ffc72c, #f59e0b);
  color: var(--text-dark);
  font-weight: 900;
  font-size: 0.74rem;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
}

.pricing-product-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-top: 8px;
  margin-bottom: 5px;
  color: #ffffff;
}

.pricing-checklist {
  list-style: none;
  text-align: left;
  margin: 16px auto 20px auto;
  max-width: 440px;
}

.pricing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.86rem;
  color: #e2e8f0;
  font-weight: 600;
}

.pricing-checklist li svg {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 3px;
  width: 15px;
  height: 15px;
}

.price-container {
  margin: 16px 0;
}

.price-old {
  font-size: 1.05rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 2px;
  font-weight: 600;
}

.price-current {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  text-shadow: 0 0 25px rgba(255, 199, 44, 0.3);
}

.price-currency {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================================
   SECCIÓN: GARANTÍA DE 7 DÍAS
   ========================================================================== */
.guarantee-box {
  background: rgba(18, 19, 36, 0.7);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  max-width: 740px;
  margin: 28px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

@media (min-width: 768px) {
  .guarantee-box {
    flex-direction: row;
    text-align: left;
  }
}

.guarantee-badge-img {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
}

.guarantee-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 5px;
}

.guarantee-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SECCIÓN: PREGUNTAS FRECUENTES (FAQ ACCORDION)
   ========================================================================== */
.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.faq-header {
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
  user-select: none;
}

.faq-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 16px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.faq-item.active .faq-body {
  max-height: 250px;
  padding-bottom: 14px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #040409;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 16px;
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 14px 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.70rem;
  opacity: 0.75;
}

/* ==========================================================================
   NOTIFICACIÓN DE COMPRA EN VIVO
   ========================================================================== */
.live-sales-popup {
  position: fixed;
  bottom: 12px;
  left: 12px;
  background: rgba(18, 19, 36, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  pointer-events: none;
  max-width: 290px;
}

.live-sales-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.live-sales-img {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.live-sales-info {
  font-size: 0.74rem;
  line-height: 1.3;
}

.live-sales-name {
  font-weight: 700;
  color: #ffffff;
}

.live-sales-action {
  color: var(--accent-gold);
  font-weight: 600;
}

.live-sales-time {
  font-size: 0.66rem;
  color: var(--text-dim);
}

/* ==========================================================================
   ANIMACIONES
   ========================================================================== */
@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 160, 24, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(22, 160, 24, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 160, 24, 0);
  }
}

@keyframes pulse-animation {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

@keyframes shine-effect {
  0% { left: -60%; }
  20% { left: 140%; }
  100% { left: 140%; }
}

/* ==========================================================================
   RESPONSIVIDAD MOBILE FIRST ESPECÍFICA
   ========================================================================== */
@media (max-width: 640px) {
  .hero-title {
    font-size: 1.45rem;
  }
  .hero-subtitle {
    font-size: 0.88rem;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .price-current {
    font-size: 2.5rem;
  }
  .live-sales-popup {
    left: 8px;
    right: 8px;
    bottom: 8px;
    max-width: none;
  }
}
