/* ================================
   AB OVO - Estilos Personalizados
   ================================ */

:root {
  /* Paleta Dual: Azul Vibrante + Verde Natural */
  --azul-primary: #0ea5e9;
  --azul-dark: #0284c7;
  --azul-light: #38bdf8;
  
  --verde-primary: #10b981;
  --verde-dark: #059669;
  --verde-light: #34d399;
  
  /* Colores principales (distribuidos equitativamente) */
  --primary-color: #0ea5e9;
  --secondary-color: #10b981;
  --accent-color: #10b981;
  
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --text-dark: #2d3436;
  --text-light: #636e72;
}

/* Tipografía Personalizada */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

.sitename {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header Personalizado */
#header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

body.mobile-nav-active #header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#header.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 2px 25px rgba(102, 126, 234, 0.15);
}

.navmenu a {
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--primary-color);
}

.navmenu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.btn-getstarted {
  background: linear-gradient(135deg, #f5576c, #f093fb);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-getstarted:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 87, 108, 0.6);
  color: white;
}

/* Base style for all highlighted Ticket buttons */
.cta-ticket-btn {
  position: relative;
  overflow: hidden;
  animation: pulse-glow 3s infinite ease-in-out;
}

.cta-ticket-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0s;
  z-index: 1;
}

.cta-ticket-btn:hover::before {
  animation: shimmer-sweep 1.5s infinite;
}

/* Animations definition */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 87, 108, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(245, 87, 108, 0);
  }
}

@keyframes shimmer-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}


/* Hero Section */
.travel-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--azul-primary), var(--azul-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(14, 165, 233, 0.6);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Sección About */
.why-us .content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.feature-card {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  border-top-color: var(--primary-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--verde-primary), var(--verde-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  margin-bottom: 20px;
}

/* Cards Section */
.featured-destination {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.featured-destination:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tour-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.tour-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--azul-primary), var(--azul-dark));
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.tour-badge.limited {
  background: linear-gradient(135deg, var(--verde-primary), var(--verde-dark));
}

.tour-badge.new {
  background: linear-gradient(135deg, #00d2d3, #0093a5);
}

.tour-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tour-content h4 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.tour-action {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.btn-book {
  display: inline-block;
  background: linear-gradient(135deg, var(--verde-primary), var(--verde-dark));
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Section Titles */
.section-title h2 {
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--azul-primary), var(--verde-primary));
  border-radius: 2px;
}

.description-title {
  color: var(--primary-color);
  font-weight: 700;
}

/* Trivias */
.trivia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Redes Sociales */
.social-card {
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.social-card:hover a {
  transform: scale(1.05);
}

/* Contact Section */
.contact-info h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-info h5 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
}

.php-email-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Footer */
#footer {
  background: linear-gradient(135deg, var(--dark-bg), #2d2d44);
  padding: 40px 0 20px;
}

.footer-about .sitename {
  font-size: 1.8rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--azul-primary), var(--verde-primary));
  transform: translateY(-3px);
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  /* Mobile Menu Fixes */
  .navmenu ul {
    background-color: rgba(26, 26, 46, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navmenu a {
    color: #fff !important;
    padding: 15px 20px !important;
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-color) !important;
  }
  .mobile-nav-active .navmenu {
    background: rgba(0, 0, 0, 0.8);
  }
  body.mobile-nav-active {
    overflow-x: hidden;
  }
}

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

  .section-title h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .feature-card {
    margin-bottom: 20px;
  }
}

/* Efectos especiales para AB OVO */
.hero-overlay {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(14, 165, 233, 0.3));
}

.section.light-background {
  background: linear-gradient(135deg, #f8f9fa, #f0f0f8);
}

/* Etiquetas especiales */
.destination-tag,
.badge-offer {
  background: linear-gradient(135deg, var(--accent-color), #f5576c);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-offer.limited {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

/* Stats */
.stat-item {
  text-align: center;
  margin: 0 15px;
}

.stat-item span:first-child {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--azul-primary), var(--verde-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Loading states */
.loading {
  display: none;
}

.error-message {
  display: none;
  color: #d32f2f;
  margin-bottom: 10px;
}

.sent-message {
  display: none;
  color: #4caf50;
  font-weight: 600;
  margin-bottom: 10px;
}

/* =========================================
   Venta de Entradas - Tickets Cards
   ========================================= */
.ticket-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #eee;
}

.ticket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ticket-header {
  padding: 25px 20px 20px;
  text-align: center;
  position: relative;
}

.ticket-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}

.badge-premium, .badge-recommended, .badge-standard {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}

.badge-premium { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.badge-recommended { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); }
.badge-standard { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); color: #051e23; }

.ticket-body {
  padding: 20px 30px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ticket-rows {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.ticket-rows i {
  color: var(--primary-color);
  margin-right: 5px;
}

.ticket-price {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1;
}

.ticket-price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 5px;
  color: var(--text-light);
}

.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.ticket-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.ticket-features li i {
  color: var(--verde-primary);
  margin-right: 10px;
  font-size: 1.1rem;
  margin-top: 2px;
}

.ticket-action {
  text-align: center;
  margin-top: auto;
}

.btn-buy {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

.btn-buy:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Card Variants */
.ticket-card.platino {
  border-top: 5px solid #00f2fe;
}
.ticket-card.platino .ticket-header h3 { color: #0284c7; }
.platino-btn { background: linear-gradient(135deg, #0ea5e9, #0284c7); }

.ticket-card.oro {
  border-top: 5px solid #fda085;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(253, 160, 133, 0.2);
  z-index: 2;
}
@media (max-width: 991px) {
  .ticket-card.oro { transform: scale(1); }
}
.ticket-card.oro:hover {
  transform: scale(1.08) translateY(-10px);
}
@media (max-width: 991px) {
  .ticket-card.oro:hover { transform: translateY(-10px); }
}
.ticket-card.oro .ticket-header h3 { color: #e67e22; }
.oro-btn { background: linear-gradient(135deg, #f6d365, #fda085); }


.ticket-card.platea {
  border-top: 5px solid #38f9d7;
}
.ticket-card.platea .ticket-header h3 { color: #059669; }
.platea-btn { background: linear-gradient(135deg, #10b981, #059669); }


/* =========================================
   Promo Poster Adjustments
   ========================================= */
.featured-destinations .promo-card-container {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  height: auto !important; /* Override fixed height of featured-destination */
  display: flex;
  flex-direction: column;
}

.promo-poster-img-container {
  position: relative;
  overflow: hidden;
  background: #000;
  width: 100%;
  height: 250px;
}

.promo-poster-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}

/* Ensure destination-info doesn't overlap the image completely */
.featured-destinations .promo-card-container .destination-info {
  position: relative !important;
  background: white !important;
  color: var(--text-dark) !important;
  padding: 25px !important;
  z-index: 2;
  box-shadow: 0 -10px 20px rgba(0,0,0,0.02);
}

/* Fix colors inside the overriding white background */
.promo-card-container .destination-info h3,
.promo-card-container .destination-info p.description,
.promo-card-container .destination-info span {
  color: var(--text-dark) !important;
}
.promo-card-container .destination-info h3 { color: var(--heading-color) !important; }
.promo-card-container .destination-info p.fw-bold { color: var(--primary-color) !important; }
.promo-card-container .destination-info .text-muted { color: #6c757d !important; }

/* Tablets and up */
@media (min-width: 768px) {
  .promo-poster-img-container {
    height: 350px;
  }
}

/* Desktops */
@media (min-width: 1200px) {
  .promo-poster-img-container {
    height: 450px;
  }
  .promo-card-container h3 {
    font-size: 1.8rem !important;
  }
}

/* =========================================
   Cartelera: Nueva Tarjeta Principal
   Layout horizontal: imagen | info
   ========================================= */

.cartelera-main-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 420px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cartelera-main-card:hover {
  box-shadow: 0 25px 70px rgba(14, 165, 233, 0.18);
  transform: translateY(-4px);
}

/* --- Columna Imagen --- */
.cartelera-flyer-col {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  overflow: hidden;
}

.cartelera-flyer-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.cartelera-flyer-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.cartelera-main-card:hover .cartelera-flyer-wrap img {
  transform: scale(1.04);
}

/* Efecto glow decorativo sobre la imagen */
.cartelera-flyer-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    rgba(255, 255, 255, 0.08) 100%
  );
  pointer-events: none;
}

/* --- Columna Info --- */
.cartelera-info-col {
  flex: 1;
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* Badge "Próximo Estreno" */
.cartelera-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #f97316);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

/* Título principal */
.cartelera-titulo {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

/* Fecha */
.cartelera-fecha {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cartelera-fecha i {
  font-size: 1.1rem;
}

/* Descripción */
.cartelera-descripcion {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 18px;
  max-width: 520px;
}

/* Meta info (duración y rating) */
.cartelera-meta {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #f0f0f0;
}

.cartelera-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Fila precio + CTA */
.cartelera-precio-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cartelera-desde {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.cartelera-precio {
  font-size: 2rem;
  font-weight: 800;
  color: var(--verde-primary);
  line-height: 1;
}

/* Botón CTA */
.cartelera-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--azul-primary), var(--verde-primary));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  transition: all 0.3s ease;
}

.cartelera-cta:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.55);
}

/* =========================================
   Responsive: Cartelera en móviles
   ========================================= */

/* Tablets medianas */
@media (max-width: 991px) {
  .cartelera-main-card {
    flex-direction: column;
    min-height: unset;
  }

  .cartelera-flyer-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .cartelera-flyer-wrap {
    min-height: 320px;
    height: 320px;
  }

  .cartelera-info-col {
    padding: 30px 30px;
  }

  .cartelera-titulo {
    font-size: 1.8rem;
  }
}

/* Móviles pequeños */
@media (max-width: 575px) {
  .cartelera-flyer-wrap {
    min-height: 260px;
    height: 260px;
  }

  .cartelera-info-col {
    padding: 24px 20px;
  }

  .cartelera-titulo {
    font-size: 1.5rem;
  }

  .cartelera-precio-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cartelera-cta {
    width: 100%;
    justify-content: center;
  }

  .cartelera-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* =========================================
   Sectores de Localidad – Layout Horizontal
   ========================================= */

.sectores-titulo {
  font-weight: 800;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

/* Tarjeta base */
.sector-ticket {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eee;
  padding: 30px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-ticket:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.13);
}

/* Ícono decorativo */
.sector-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 4px;
  flex-shrink: 0;
}

/* Nombre del sector */
.sector-nombre {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

/* Filas */
.sector-filas {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sector-filas i {
  color: var(--primary-color);
}

/* Precio */
.sector-precio {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin: 6px 0 4px;
}

.sector-moneda {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
  font-weight: 700;
  opacity: 0.7;
}

/* Botón */
.sector-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.sector-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Badge pequeño */
.sector-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  color: white;
}

/* ---- Variante PLATINO ---- */
.sector-ticket.platino {
  border-top: 5px solid #00f2fe;
}
.sector-ticket.platino .sector-icon {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}
.sector-ticket.platino .sector-nombre { color: #0284c7; }
.sector-ticket.platino .sector-precio { color: #0284c7; }

/* ---- Variante ORO (destacada) ---- */
.sector-ticket.oro {
  border-top: 5px solid #fda085;
  background: linear-gradient(160deg, #fff 70%, #fff9f5 100%);
  box-shadow: 0 10px 40px rgba(253, 160, 133, 0.2);
}
.sector-ticket.oro .sector-icon {
  background: rgba(246, 211, 101, 0.15);
  color: #e67e22;
}
.sector-ticket.oro .sector-nombre { color: #e67e22; }
.sector-ticket.oro .sector-precio { color: #e67e22; }

/* Banner "Más Vendido" */
.sector-mas-vendido {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #f6d365, #fda085);
  color: #7c3b00;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 0 18px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Variante PLATEA ---- */
.sector-ticket.platea {
  border-top: 5px solid #38f9d7;
}
.sector-ticket.platea .sector-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.sector-ticket.platea .sector-nombre { color: #059669; }
.sector-ticket.platea .sector-precio { color: #059669; }

/* =========================================
   Responsive Sectores
   ========================================= */

/* En tablet, 2 cols → la 3ra cae sola al centro */
@media (max-width: 991px) {
  .sector-ticket {
    padding: 24px 18px 20px;
  }
  .sector-nombre {
    font-size: 1.4rem;
  }
  .sector-precio {
    font-size: 2rem;
  }
}

/* Móviles: columna única */
@media (max-width: 575px) {
  .sector-ticket {
    padding: 22px 16px 18px;
  }
  .sector-nombre {
    font-size: 1.3rem;
  }
  .sector-precio {
    font-size: 1.8rem;
  }
}

/* =========================================
   Video Section - Cómo Comprar
   ========================================= */
.video-container-wrapper {
  max-width: 1132px;
  margin: 40px auto 30px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
}

.video-responsive-holder {
  position: relative;
  width: 100%;
  max-width: 1132px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  background: #000;
  aspect-ratio: 1132 / 738;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.video-responsive-holder:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(14, 165, 233, 0.25);
}

.video-responsive-holder video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .video-container-wrapper {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .video-container-wrapper {
    margin-top: 25px;
  }
  .video-responsive-holder {
    border-radius: 16px;
  }
}
