/* ========================================
   PROMO MOTO 0KM - STYLES
   ======================================== */

/* Hero Section */
.promo-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #E30613 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.promo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  z-index: 0;
}

.promo-hero .container,
.promo-hero .row {
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.4);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 25px;
  animation: pulse 2s infinite;
}

.promo-badge span {
  color: #FFD700;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.promo-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.promo-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.promo-dates {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  line-height: 1.8;
}

.promo-dates strong {
  color: #FFD700;
  font-weight: 600;
}

.promo-actions {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.promo-actions .btn {
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-actions .btn-danger {
  background: #E30613;
  border: none;
}

.promo-actions .btn-danger:hover {
  background: #c20511;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(227, 6, 19, 0.5);
}

.promo-actions .btn-outline-light {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.promo-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.promo-images img {
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
  width: 100%;
  height: auto;
}

.promo-images img:hover {
  transform: scale(1.03) rotate(1deg);
}

/* ========================================
   SECTIONS
   ======================================== */
.section-padding {
  padding: 90px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E30613 0%, #FFD700 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
  font-weight: 400;
}

/* ========================================
   CUPONES CARDS
   ======================================== */
.cupones-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 3px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.cupones-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #E30613 0%, #FFD700 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cupones-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(227, 6, 19, 0.15);
  border-color: #E30613;
}

.cupones-card:hover::before {
  opacity: 1;
}

.cupones-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  color: #1a1a1a;
  line-height: 1.3;
}

.route-subtitle {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cupones-info {
  margin-top: 25px;
}

.cupon-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 16px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cupon-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.cupon-item.highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(227, 6, 19, 0.05) 100%);
  border: 2px solid #FFD700;
}

.cupon-item.highlight:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(227, 6, 19, 0.08) 100%);
  border-color: #E30613;
}

.cupon-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  padding: 0 10px;
  background: linear-gradient(135deg, #E30613 0%, #8B0000 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
  text-align: center;
  line-height: 1.2;
}

.cupon-item.highlight .cupon-number {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1a1a1a;
}

.cupon-text {
  flex: 1;
  color: #333;
  line-height: 1.7;
  padding-top: 8px;
  font-size: 0.95rem;
}

.cupon-text strong {
  color: #E30613;
  font-weight: 700;
}

/* ========================================
   BASES SECTION
   ======================================== */
.bases-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #E30613 100%);
  padding: 90px 0;
  position: relative;
}

.bases-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.bases-section .container {
  position: relative;
  z-index: 1;
}

.pdf-container {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.pdf-container:hover {
  transform: scale(1.01);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, #E30613 0%, #1a1a1a 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.cta-section p {
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-buttons .btn-danger {
  background: #fff;
  color: #E30613;
  border: none;
}

.cta-buttons .btn-danger:hover {
  background: #f0f0f0;
  color: #E30613;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline-light {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cta-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-simple {
  background: #0a0a0a;
  color: #fff;
  padding: 50px 0 30px;
  border-top: 3px solid #E30613;
}

.footer-links {
  margin-top: 25px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #E30613;
  text-decoration: none;
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
  border-radius: 16px;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
}

.alert i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.alert strong {
  font-weight: 700;
}

.alert-danger {
  background: linear-gradient(135deg, #ffe5e7 0%, #ffcdd2 100%);
  color: #8B0000;
  border-left: 5px solid #E30613;
}

.alert-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #0d47a1;
  border-left: 5px solid #1976d2;
}

.alert-info a {
  color: #0d47a1;
  font-weight: 700;
  text-decoration: underline;
}

.alert-info a:hover {
  color: #1976d2;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .promo-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .promo-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
  
  .promo-title {
    font-size: 2.3rem;
  }
  
  .promo-subtitle {
    font-size: 1.1rem;
  }
  
  .promo-dates {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .promo-actions {
    flex-direction: column;
  }
  
  .promo-actions .btn {
    width: 100%;
    margin: 8px 0 !important;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin: 8px 0 !important;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .bases-section,
  .cta-section {
    padding: 60px 0;
  }
  
  .cupones-card {
    padding: 30px 20px;
  }
  
  .cupones-card h3 {
    font-size: 1.4rem;
  }
  
  .cupon-number {
    min-width: 45px;
    height: 45px;
    font-size: 0.8rem;
  }
  
  .cupon-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .promo-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-links a {
    display: block;
    margin: 10px 0;
  }
}
