/* CSS style.css actualizado - Tema Negro/Dorado Elegante */
:root {
  --bg: #000000;
  --card: #0a0a0a;
  --muted: #888888;
  --accent: #ffffff;
  --accent-2: #FFD700;
  --accent-2-dark: #FFC400;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  --radius: 12px;
  --container: 1200px;
  --gap: 20px;
  --border: #222222;
  --hero-bg: #000;
  --modal-bg: rgba(0, 0, 0, 0.9);
  --footer-bg: #0a0a0a;
  --footer-border: #333333;
  --price-old: #777777;
  --gradient-primary: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFC400 100%);
  --gradient-card: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  --gradient-gray: linear-gradient(135deg, #333333 0%, #444444 100%);
  --neon-glow: 0 0 20px rgba(255, 215, 0, 0.3);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body { 
  height: 100%; 
  background: var(--bg); 
  color: var(--accent); 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.container { 
  max-width: var(--container); 
  margin: 0 auto; 
  padding: 0 18px; 
}

/* ===================== */
/*        HEADER CENTRADO */
/* ===================== */
.site-header { 
  background: rgba(0, 0, 0, 0.98); 
  padding: 18px 0; 
  box-shadow: var(--shadow); 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  margin-bottom: 0;
}

.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 60px;
  position: relative;
}

.brand { 
  position: absolute;
  left: 0;
}

.brand-logo { 
  height: 48px; 
  transition: all 0.3s ease; 
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.2));
}

.brand-logo:hover { 
  transform: scale(1.05); 
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.main-nav { 
  display: flex; 
  gap: 40px;
  justify-content: center;
  flex: 1;
}

.main-nav a { 
  color: var(--accent); 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 16px;
  transition: all 0.3s ease; 
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

.main-nav a:hover { 
  color: var(--accent-2); 
  background: rgba(255, 215, 0, 0.05);
}

.main-nav a.active { 
  color: var(--accent-2); 
  background: rgba(255, 215, 0, 0.08);
}

.main-nav a.active::after { 
  content: ''; 
  position: absolute; 
  bottom: -5px; 
  left: 50%;
  transform: translateX(-50%);
  width: 60%; 
  height: 2px; 
  background: var(--accent-2); 
  border-radius: 1px;
}

.header-actions { 
  position: absolute;
  right: 0;
}

.btn { 
  padding: 10px 20px; 
  border-radius: var(--radius); 
  border: none; 
  cursor: pointer; 
  font-weight: 700; 
  font-size: 14px; 
  transition: all 0.3s ease; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary { 
  background: var(--gradient-gray); 
  color: #FFD700; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.btn.primary:hover { 
  background: linear-gradient(135deg, #444444 0%, #555555 100%); 
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  color: #FFD700;
}

.btn.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 700;
  border: none;
}

.btn.whatsapp-btn:hover {
  background: linear-gradient(135deg, #1DA851, #0D7B6F);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn.whatsapp-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.btn.ghost { 
  background: transparent; 
  border: 1px solid var(--border); 
  color: var(--accent); 
}

.btn.ghost:hover { 
  border-color: var(--accent-2); 
  color: var(--accent-2); 
  background: rgba(255, 215, 0, 0.03);
}

/* ===================== */
/*    CARRO DE COMPRAS MEJORADO */
/* ===================== */
.cart-btn {
  position: relative;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.cart-btn:hover {
  background: rgba(30, 30, 30, 0.9);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.cart-icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.cart-icon svg {
  fill: #FFD700;
  width: 100%;
  height: 100%;
  transition: fill 0.3s ease;
}

.cart-btn:hover .cart-icon svg {
  fill: #FFD700;
}

.cart-counter {
  background: var(--gradient-gray);
  color: #FFD700;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.cart-btn:hover .cart-counter {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* ===================== */
/*    HERO VIDEO ESTÁTICO */
/* ===================== */
.hero { 
  width: 100%; 
  height: auto;          
  aspect-ratio: 16 / 9;  /* Esto mantiene la forma original donde el texto se ve bien */
  max-height: 90vh;      /* Para que no ocupe más de la pantalla del usuario */
  overflow: hidden; 
  position: relative; 
  background: #000; 
  margin: 0 0 40px;
}

.video-container {
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  /* 'contain' asegura que el video se vea COMPLETO y el texto no se corte */
  object-fit: contain; 
  background: #000; 
  filter: brightness(0.9); /* Un poco más de luz para que el texto luzca */
}


.video-container:hover video {
  filter: brightness(0.9);
}

/* ===================== */
/*    PRODUCTOS DESTACADOS */
/* ===================== */
.products-section {
  padding: 80px 0;
}

.section-title { 
  font-size: 32px; 
  font-weight: 800; 
  margin-bottom: 16px; 
  color: var(--accent); 
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #666666 0%, #888888 100%);
  border-radius: 2px;
}

.lead { 
  color: var(--muted); 
  margin-bottom: 40px; 
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 30px; 
  margin-top: 40px;
}

.product-card { 
  background: var(--gradient-card); 
  border-radius: 18px; 
  overflow: hidden; 
  border: 1px solid var(--border); 
  transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1); 
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #666666 0%, #888888 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover { 
  transform: translateY(-10px) scale(1.02); 
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6); 
  border-color: rgba(255, 215, 0, 0.2);
}

.product-media { 
  position: relative; 
  overflow: hidden; 
  aspect-ratio: 1/1; 
  background: linear-gradient(135deg, #000000, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img { 
  width: 85%; 
  height: 85%; 
  object-fit: contain; 
  transition: transform 0.6s cubic-bezier(0.215, 0.610, 0.355, 1); 
}

.product-card:hover .product-media img { 
  transform: scale(1.08); 
}

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-gray);
  color: #FFD700;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 2;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.product-info { 
  padding: 24px; 
  border-top: 1px solid var(--border); 
}

.product-title { 
  font-size: 20px; 
  font-weight: 700; 
  margin-bottom: 10px; 
  color: var(--accent); 
  line-height: 1.3;
  height: 52px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.price { 
  font-size: 24px; 
  font-weight: 800; 
  color: var(--accent-2); 
  margin: 15px 0; 
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.card-actions { 
  display: flex; 
  gap: 12px; 
  margin-top: 20px;
}

/* ===================== */
/*    COMO FUNCIONA      */
/* ===================== */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
  text-align: center;
}

.how-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.video-card {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 215, 0, 0.2);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* ===================== */
/*    SUSCRIPCIONES CON FONDO NEGRO COMPLETO */
/* ===================== */
.subscriptions-images-section {
  padding: 100px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.subscriptions-images-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.subscription-images-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px auto;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.subscription-image-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  background: #000000;
  animation: float 6s ease-in-out infinite;
}

.subscription-image-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(255, 255, 255, 0.03);
}

.subscription-image-card.highlighted {
  border: 3px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.02);
}

.subscription-image-card.highlighted:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.9),
    0 0 80px rgba(255, 255, 255, 0.04);
}

.image-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 18px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.optimized-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #000;
  transition: transform 0.7s cubic-bezier(0.215, 0.610, 0.355, 1);
  filter: brightness(0.9) contrast(1.1);
}

.subscription-image-card:hover .optimized-img {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.subscription-image-card:hover .image-overlay {
  opacity: 1;
}

.plan-info {
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.subscription-image-card:hover .plan-info {
  transform: translateY(0);
}

.plan-info h3 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.plan-info .price {
  color: #FFD700;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
}

.plan-period {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}

.highlight-text {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: #FFD700;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  animation: pulse 2s infinite;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.subscribe-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(50, 50, 50, 0.9));
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.subscription-image-card:hover .subscribe-badge {
  transform: translateY(0);
  opacity: 1;
  animation: bounce 2s infinite;
}

.subscription-footer {
  margin-top: 60px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #DDDDDD;
  font-size: 16px;
  font-weight: 500;
}

.benefit-item i {
  color: #FFD700;
  font-size: 20px;
  background: rgba(255, 215, 0, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* ===================== */
/*    SECCIÓN DE RESEÑAS DESTACADAS */
/* ===================== */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.reviews-section .container {
    position: relative;
    z-index: 1;
}

/* GRID DE RESEÑAS - SOLO 2 DESTACADAS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.review-card {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #333333 0%, #444444 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.review-card.highlighted {
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.review-card.highlighted::after {
    content: '⭐ DESTACADO';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #333333 0%, #444444 100%);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 2;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333333 0%, #444444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-weight: 900;
    font-size: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.reviewer-details h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.2;
}

.reviewer-details .review-date {
    color: #888888;
    font-size: 14px;
    font-weight: 500;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFD700;
    font-size: 18px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.review-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.review-content {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

/* CONTENEDOR DE IMAGEN DE RESEÑA */
.review-image-container {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #666666;
    width: 100%;
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #444444;
    display: block;
}

.image-placeholder p {
    color: #888888;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.image-placeholder small {
    color: #666666;
    font-size: 13px;
    display: block;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.4;
}

/* CUANDO SUBAS TUS IMÁGENES, REEMPLAZA .image-placeholder CON ESTO: */
.review-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.review-image-container:hover .review-image {
    transform: scale(1.02);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 10px;
}

.helpful-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.helpful-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.helpful-btn.active {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
}

.helpful-btn i {
    font-size: 16px;
}

.verified-purchase {
    color: #00C853;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 200, 83, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.verified-purchase i {
    font-size: 16px;
}

/* MODAL DE CONFIRMACIÓN ACTUALIZADO CON WHATSAPP */
.subscription-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
}

.subscription-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    min-height: auto;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
    position: relative;
    margin: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #333333 0%, #444444 100%);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    position: sticky;
    top: 0;
    z-index: 2;
}

.modal-header h3 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: #FFD700;
    font-size: 20px;
}

.close-modal {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.modal-body {
    padding: 25px;
}

.plan-details {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-icon {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 15px;
    background: rgba(255, 215, 0, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.plan-details h2 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-price {
    color: #FFD700;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.plan-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.plan-features {
    margin: 20px 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.plan-features li i {
    color: #00C853;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* WHATSAPP PAYMENT - MÁS COMPACTO */
.whatsapp-payment-info {
    text-align: center;
    padding: 18px;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.1);
    margin-top: 15px;
}

.whatsapp-icon {
    font-size: 36px;
    color: #25D366;
    margin-bottom: 12px;
}

.whatsapp-payment-info h3 {
    color: #25D366;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.whatsapp-payment-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.whatsapp-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.step span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    background: rgba(10, 10, 10, 0.9);
    position: sticky;
    bottom: 0;
    z-index: 2;
}

.modal-footer .btn {
    flex: 1;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-footer .btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.modal-footer .btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 700;
    border: none;
}

.modal-footer .btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1DA851, #0D7B6F);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.modal-footer .btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* Eliminar opciones de pago anteriores */
.payment-options {
    display: none !important;
}

/* ===================== */
/*        FOOTER         */
/* ===================== */
.site-footer { 
  padding: 80px 0 30px; 
  background: #050505; 
  border-top: 1px solid #1a1a1a; 
  color: #ffffff; 
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #333333 0%, #444444 100%);
}

.footer-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 40px; 
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col { 
  flex: 1; 
}

.footer-brand { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  margin-bottom: 25px;
}

.footer-logo { 
  width: 50px;
  height: 50px;
  border-radius: 12px; 
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-title { 
  font-size: 22px;
  font-weight: 800; 
  color: #ffffff; 
  background: linear-gradient(135deg, #FFFFFF 0%, #CCCCCC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.footer-heading { 
  font-size: 18px;
  font-weight: 700; 
  margin-bottom: 20px; 
  color: #ffffff; 
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #666666 0%, #888888 100%);
  border-radius: 1px;
}

.footer-text { 
  color: #a0a0a0; 
  line-height: 1.6; 
  font-size: 15px; 
  margin-bottom: 20px;
}

.footer-text strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-social { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.footer-link { 
  color: #a0a0a0; 
  font-weight: 500; 
  text-decoration: none; 
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  padding: 4px 0;
}

.footer-link:hover { 
  color: #FFD700; 
  transform: translateX(5px);
}

.footer-link::before {
  content: '→';
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-link:hover::before {
  opacity: 1;
}

/* Información de contacto mejorada */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #a0a0a0;
}

.contact-item i {
  color: #FFD700;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item span {
  line-height: 1.5;
}

/* Redes sociales con iconos */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a0a0a0;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.social-link:hover {
  color: #FFD700;
  transform: translateX(5px);
}

.social-link i {
  width: 20px;
  text-align: center;
  font-size: 18px;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.2);
}

/* Calificaciones mejoradas */
.footer-ratings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a0a0a0;
  font-size: 14px;
}

.rating-item i {
  color: #FFD700;
  font-size: 16px;
}

/* Copyright mejorado */
.copy { 
  margin-top: 60px; 
  padding-top: 30px; 
  border-top: 1px solid #2a2a2a; 
  text-align: center; 
  font-size: 14px; 
  color: #666666; 
}

.copy p {
  margin: 8px 0 0 0;
  font-size: 12px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== */
/*    ANIMACIONES        */
/* ===================== */
@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

.product-card, .subscription-image-card, .video-card, .review-card {
  animation: fadeInUp 0.8s ease forwards;
}

.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.product-card:nth-child(5) { animation-delay: 0.4s; }
.product-card:nth-child(6) { animation-delay: 0.5s; }

.subscription-image-card:nth-child(2) { animation-delay: 0.2s; }
.subscription-image-card:nth-child(3) { animation-delay: 0.4s; }

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* ===================== */
/*    RESPONSIVE         */
/* ===================== */
@media (max-width: 1200px) { 
  .product-grid { 
    grid-template-columns: repeat(3, 1fr); 
  } 
  
  .hero { 
    height: 500px; 
  }
  
  .video-container video { 
    height: 500px; 
  }
  
  .main-nav {
    gap: 30px;
  }
  
  .subscription-images-grid {
    gap: 15px;
  }
  
  .subscription-image-card {
    min-width: 280px;
  }
  
  .image-container {
    height: 350px;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) { 
  .product-grid { 
    grid-template-columns: repeat(2, 1fr); 
  } 
  
  .hero { 
    height: 400px; 
  }
  
  .video-container video { 
    height: 400px; 
  }
  
  .header-inner {
    gap: 40px;
  }
  
  .main-nav {
    gap: 20px;
  }
  
  .subscription-images-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .subscription-image-card {
    width: 100%;
    max-width: 500px;
  }
  
  .subscription-image-card.highlighted {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) { 
  .product-grid { 
    grid-template-columns: 1fr; 
  } 
  
  .hero { 
    height: 350px; 
  }
  
  .video-container video { 
    height: 350px; 
  }
  
  .header-inner { 
    flex-wrap: wrap; 
    justify-content: space-between;
    gap: 15px; 
  }
  
  .brand {
    position: static;
    order: 1;
  }
  
  .main-nav { 
    order: 3; 
    width: 100%; 
    justify-content: center; 
    margin-top: 10px; 
    gap: 15px;
  }
  
  .header-actions {
    position: static;
    order: 2;
  }
  
  .brand-logo { 
    height: 42px; 
  }
  
  .footer-grid { 
    flex-direction: column; 
    gap: 40px; 
  }
  
  .footer-col { 
    flex: 1 0 100%; 
  }
  
  .video-card {
    height: 250px;
  }
  
  .subscriptions-images-section {
    padding: 60px 0;
  }
  
  .image-container {
    height: 300px;
  }
  
  .plan-info h3 {
    font-size: 24px;
  }
  
  .plan-info .price {
    font-size: 28px;
  }
  
  .benefits {
    gap: 20px;
  }
  
  .benefit-item {
    font-size: 14px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .review-rating {
    align-self: flex-start;
  }
  
  .review-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .modal-content {
    width: 95%;
  }
  
  .whatsapp-steps {
    gap: 10px;
  }
  
  .step {
    padding: 10px 15px;
  }
  
  /* Modal responsive */
  .modal-content {
    max-width: 400px;
    margin: 20px;
  }
  
  .modal-header {
    padding: 18px 20px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .plan-details h2 {
    font-size: 22px;
  }
  
  .modal-price {
    font-size: 28px;
  }
  
  .plan-features {
    padding: 15px;
  }
  
  .modal-footer {
    padding: 18px 20px;
  }
  
  .modal-footer .btn {
    padding: 12px;
    font-size: 13px;
    min-height: 42px;
  }
}

@media (max-width: 480px) { 
  .hero { 
    height: 300px; 
    margin: 0 0 30px;
  }
  
  .video-container video { 
    height: 300px; 
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .main-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .main-nav a {
    padding: 6px 12px;
    font-size: 14px;
  }
  
  .subscription-images-grid {
    margin: 30px auto;
  }
  
  .subscription-image-card {
    min-width: 100%;
  }
  
  .image-container {
    height: 250px;
  }
  
  .plan-info {
    padding: 20px;
  }
  
  .plan-info h3 {
    font-size: 20px;
  }
  
  .plan-info .price {
    font-size: 24px;
  }
  
  .subscribe-badge {
    font-size: 12px;
    padding: 10px 20px;
  }
  
  .reviews-section {
    padding: 60px 0;
  }
  
  .review-image-container {
    min-height: 180px;
  }
  
  .image-placeholder i {
    font-size: 36px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .plan-details h2 {
    font-size: 24px;
  }
  
  .modal-price {
    font-size: 32px;
  }
  
  .modal-footer {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  /* Modal mobile */
  .subscription-modal {
    padding: 15px;
  }
  
  .modal-content {
    max-width: 100%;
    margin: 10px;
    border-radius: 16px;
  }
  
  .modal-header {
    padding: 16px 18px;
  }
  
  .modal-header h3 {
    font-size: 16px;
  }
  
  .close-modal {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
  
  .modal-body {
    padding: 18px;
  }
  
  .plan-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  
  .plan-details h2 {
    font-size: 20px;
  }
  
  .modal-price {
    font-size: 26px;
  }
  
  .plan-details p {
    font-size: 13px;
  }
  
  .plan-features {
    margin: 15px 0;
    padding: 12px;
  }
  
  .plan-features h4 {
    font-size: 15px;
  }
  
  .plan-features li {
    font-size: 13px;
    padding: 5px 0;
  }
  
  .whatsapp-payment-info {
    padding: 15px;
  }
  
  .whatsapp-icon {
    font-size: 32px;
  }
  
  .whatsapp-payment-info h3 {
    font-size: 16px;
  }
  
  .whatsapp-payment-info p {
    font-size: 12px;
  }
  
  .step {
    padding: 8px 12px;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  
  .step span:last-child {
    font-size: 12px;
  }
  
  .modal-footer {
    padding: 16px 18px;
    flex-direction: column;
    gap: 10px;
  }
  
  .modal-footer .btn {
    width: 100%;
  }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #333333 0%, #444444 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #444444 0%, #555555 100%);
}

/* Estilos para botones de acción */
.action-btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.action-btn.primary {
  background: linear-gradient(135deg, #333333 0%, #444444 100%);
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.action-btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: #FFD700;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Estilos para notificaciones temporales */
.temp-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(0, 0, 0, 0.98));
  color: #FFD700;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 10000;
  animation: slideIn 0.3s ease;
  max-width: 350px;
  backdrop-filter: blur(10px);
  font-weight: 600;
}

/* Estilos para product rating */
.product-rating {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffd700;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Para pantallas grandes, mantener proporción de imágenes 680x886 */
@media (min-width: 1200px) {
  .image-container {
    height: 450px;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Scrollbar personalizada para modal */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #333333 0%, #444444 100%);
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #444444 0%, #555555 100%);
}

/* Efecto de overlay más oscuro */
.subscription-modal::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

/* Para pantallas muy grandes, mantener centrado y tamaño moderado */
@media (min-width: 1400px) {
  .modal-content {
    max-width: 500px;
  }
}
/* --- CORRECCIÓN DEFINITIVA PARA MÓVILES (TODOS LOS MODELOS) --- */
@media (max-width: 768px) {
  .hero {
    /* Quitamos la altura fija para que no fuerce el zoom */
    height: auto !important; 
    min-height: auto !important;
    aspect-ratio: 16 / 9; /* La forma estándar de los videos */
    background: #000;
    margin-bottom: 20px;
  }

  .video-container {
    position: relative !important;
    width: 100%;
    height: 100%;
  }

  .video-container video {
    position: relative;
    display: block;
    width: 100% !important;
    height: auto !important;
    /* 'contain' es la clave: asegura que NUNCA se corten las palabras */
    object-fit: contain !important; 
    object-position: center;
  }
}

/* ========================================== */
/* PIN DORADO: PRÓXIMO A SALIR                */
/* ========================================== */

/* 1. Estilo base del Pin (Oculto al inicio) */
.badge-upcoming {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #FFD700; /* Dorado Gamer */
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    border: 1px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none; /* No estorba al clic */
    
    /* Efecto de animación para ocultar */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 2. Mostrar cuando pasas el mouse por la tarjeta */
.product-card:hover .badge-upcoming {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Animación de pulso dorado (Opcional, para que brille) */
.product-card:hover .badge-upcoming {
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}