/* ==========================================================
   ECLIPSE KIDS - Custom Styles
   Estilos personalizados para el sitio de Eclipse Kids
   ========================================================== */

/* ==========================================================
   HERO SECTION CON VIDEO
   ========================================================== */

.eclipse-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
}

/* Video de fondo */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Overlay oscuro sobre el video */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.85) 0%,
    rgba(118, 75, 162, 0.75) 100%
  );
  z-index: 1;
}

/* Container del hero */
.hero-container {
  position: relative;
  z-index: 2;
}

/* Contenido del hero */
.eclipse-hero .hero-content {
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

/* Logo (si se usa) */
.hero-logo {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Título principal */
.eclipse-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

/* Subtítulo */
.eclipse-hero .hero-subtitle {
  font-size: 1.8rem !important;
  font-weight: 500;
  color: #ffffff !important;
  text-shadow: 0 0 15px rgba(255, 235, 59, 1), 0 0 30px rgba(255, 235, 59, 0.7), 0 2px 15px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.3;
}

/* Botones del hero */
.eclipse-hero .hero-actions .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.eclipse-hero .hero-actions .btn-primary {
  background: #fff;
  color: #667eea;
  border: none;
}

.eclipse-hero .hero-actions .btn-primary:hover {
  background: #f8f9ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.eclipse-hero .hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid #fff;
  backdrop-filter: blur(10px);
}

.eclipse-hero .hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.eclipse-hero .hero-actions .btn-success {
  background: #10b981;
  color: #fff;
  border: none;
}

.eclipse-hero .hero-actions .btn-success:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Features del hero */
.hero-features {
  margin-top: 3rem;
}

.hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-features .feature-item i {
  font-size: 2.5rem;
  color: #ffd700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-features .feature-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.hero-features .feature-item small {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 768px) {
  .eclipse-hero {
    min-height: 90vh;
    padding: 80px 0 60px;
  }

  .eclipse-hero .hero-title {
    font-size: 2.5rem;
  }

  .eclipse-hero .hero-subtitle {
    font-size: 1.2rem;
  }

  .eclipse-hero .hero-actions .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px !important;
    align-items: center;
    justify-content: center;
  }

  .hero-features .feature-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-features .feature-item i {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .eclipse-hero .hero-title {
    font-size: 2rem;
  }

  .eclipse-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .eclipse-hero .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .eclipse-hero .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==========================================================
   ANIMACIONES
   ========================================================== */

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-features .feature-item {
  animation: float 3s ease-in-out infinite;
}

.hero-features .feature-item:nth-child(1) {
  animation-delay: 0s;
}

.hero-features .feature-item:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-features .feature-item:nth-child(3) {
  animation-delay: 1s;
}

/* ==========================================================
   ACCESIBILIDAD
   ========================================================== */

/* Reducir movimiento si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
  .hero-features .feature-item {
    animation: none;
  }

  .eclipse-hero .hero-actions .btn:hover {
    transform: none;
  }
}

/* ==========================================================
   TARJETA CON IMAGEN - EFECTO HOVER
   ========================================================== */

.gallery-item:hover .hover-zoom {
  transform: scale(1.1);
}

.gallery-item:hover .overlay-magic {
  opacity: 1 !important;
}

/* Forzar que el caption siempre sea visible */
.about .restaurant-gallery .gallery-item .gallery-caption {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  background: #f8fafc !important;
  padding: 20px !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  transition: none !important;
}

.gallery-caption h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333 !important;
}

.gallery-caption p {
  font-size: 0.9rem;
  color: #666 !important;
}

/* ==========================================================
   SERVICIOS - FILTROS MÓVIL
   ========================================================== */

@media (max-width: 768px) {
  .menu-filters .nav-pills {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    justify-content: center !important;
  }
  
  .menu-filters .nav-item {
    margin: 0 !important;
  }
  
  .menu-filters .nav-link {
    font-size: 0.85rem !important;
    padding: 8px 12px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
  
  .menu-filters .nav-link i {
    font-size: 0.9rem !important;
    margin-right: 4px !important;
  }
  
  /* Tarjetas de personal más pequeñas en móvil */
  .staff-card {
    padding: 15px !important;
  }
  
  .staff-card i {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
  }
  
  .staff-card h5 {
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
  }
  
  .staff-card p {
    font-size: 0.8rem !important;
    margin-bottom: 0 !important;
  }
}

/* ==========================================================
   MENÚ DE NAVEGACIÓN
   ========================================================== */

/* Sombra negra para texto del menú */
.navbar .nav-link,
.navbar .navbar-brand,
.navbar-nav .nav-link,
.navbar-nav .nav-item a {
  text-shadow: 0 8px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.8);
}

/* Hover en links del menú */
.navbar .nav-link:hover,
.navbar-nav .nav-link:hover {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.9);
}

/* Menú móvil hamburguesa */
.mobile-nav-toggle {
  color: #ffffff !important;
  font-size: 28px !important;
  z-index: 10001 !important;
}

/* Menú móvil desplegado - FORZAR VISIBILIDAD */
.mobile-nav-active .navmenu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.95) !important;
  z-index: 9999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-nav-active .navmenu ul {
  position: relative !important;
  top: 80px !important;
  background: transparent !important;
  padding: 20px !important;
  margin: 0 !important;
  list-style: none !important;
  display: block !important;
}

.mobile-nav-active .navmenu ul li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-nav-active .navmenu ul li a {
  display: block !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  padding: 15px 20px !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.mobile-nav-active .navmenu ul li a:hover {
  color: #ffd700 !important;
  background: rgba(255, 215, 0, 0.1) !important;
}

/* ==========================================================
   FONDO ESTRELLADO / GALÁCTICO MEJORADO
   ========================================================== */

/* Fondo base oscuro con gradiente galáctico profundo */
body {
  background: #000;
  background: radial-gradient(ellipse at center, #1a1b3e 0%, #0a0e27 50%, #000 100%);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Primera capa - Estrellas grandes brillantes */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(4px 4px at 20px 30px, rgba(255, 255, 255, 1), transparent),
    radial-gradient(3px 3px at 60px 70px, rgba(102, 126, 234, 1), transparent),
    radial-gradient(3px 3px at 50px 50px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(118, 75, 162, 1), transparent),
    radial-gradient(4px 4px at 90px 10px, rgba(255, 255, 255, 1), transparent),
    radial-gradient(3px 3px at 150px 120px, rgba(255, 215, 0, 1), transparent),
    radial-gradient(2px 2px at 180px 40px, rgba(255, 255, 255, 0.8), transparent);
  background-size: 200px 200px;
  background-repeat: repeat;
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Segunda capa - Estrellas medianas */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 40px 60px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(2px 2px at 110px 20px, rgba(102, 126, 234, 0.8), transparent),
    radial-gradient(3px 3px at 160px 90px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(2px 2px at 30px 120px, rgba(118, 75, 162, 0.7), transparent),
    radial-gradient(2px 2px at 200px 150px, rgba(255, 215, 0, 0.8), transparent),
    radial-gradient(2px 2px at 80px 170px, rgba(255, 255, 255, 0.7), transparent);
  background-size: 180px 180px;
  background-repeat: repeat;
  animation: twinkle 5s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

/* Tercera capa - Estrellas pequeñas distantes */
.starfield-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(0.5px 0.5px at 25px 45px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(0.5px 0.5px at 75px 85px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(0.5px 0.5px at 125px 25px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(0.5px 0.5px at 175px 65px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(0.5px 0.5px at 35px 105px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(0.5px 0.5px at 95px 135px, rgba(255, 255, 255, 0.3), transparent);
  background-size: 150px 150px;
  background-repeat: repeat;
  animation: slowTwinkle 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Cuarta capa - Nebulosa galáctica */
.galaxy-nebula {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 800px 400px at 20% 30%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 600px 300px at 80% 70%, rgba(118, 75, 162, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 400px 200px at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
  animation: nebulaFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Asegurar que el contenido esté por encima */
#header,
.main,
#footer {
  position: relative;
  z-index: 1;
}

/* Ajustar secciones para que se vean bien sobre el fondo oscuro */
.section.light-background {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.section:not(.light-background) {
  background: rgba(10, 14, 39, 0.6) !important;
  backdrop-filter: blur(10px);
  color: #fff;
}

/* Ajustar el footer */
.footer.light-background {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Animaciones de estrellas mejoradas */
@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  25% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  75% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes slowTwinkle {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.2;
  }
}

@keyframes nebulaFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
  33% {
    transform: translate(30px, -20px) rotate(1deg);
    opacity: 0.8;
  }
  66% {
    transform: translate(-20px, 30px) rotate(-1deg);
    opacity: 0.4;
  }
}

/* Efecto de nebulosa/galaxia flotante */
@keyframes galaxyFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.5;
  }
}

/* Nebulosas decorativas mejoradas en el hero */
.eclipse-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 600px;
  background: 
    radial-gradient(ellipse 400px 300px at center, rgba(102, 126, 234, 0.4) 0%, rgba(102, 126, 234, 0.1) 40%, transparent 70%),
    radial-gradient(ellipse 200px 150px at 60% 40%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
  border-radius: 50%;
  animation: galaxyFloat 15s ease-in-out infinite;
  z-index: 0;
}

.eclipse-hero::after {
  content: '';
  position: absolute;
  bottom: -250px;
  left: -250px;
  width: 900px;
  height: 700px;
  background: 
    radial-gradient(ellipse 450px 350px at center, rgba(118, 75, 162, 0.35) 0%, rgba(118, 75, 162, 0.08) 40%, transparent 70%),
    radial-gradient(ellipse 250px 200px at 40% 60%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
  border-radius: 50%;
  animation: galaxyFloat 18s ease-in-out infinite reverse;
  z-index: 0;
}

/* Estrellas fugaces ocasionales */
.shooting-star {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shooting-star::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 100%;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: shootingStar 3s linear infinite;
}

@keyframes shootingStar {
  0% {
    transform: translateX(0) translateY(0) scale(0);
    opacity: 0;
  }
  10% {
    transform: translateX(-50px) translateY(50px) scale(1);
    opacity: 1;
  }
  90% {
    transform: translateX(-300px) translateY(300px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-400px) translateY(400px) scale(0);
    opacity: 0;
  }
}

/* Ajustar el header para que se vea bien */
#header {
  background-image: url('https://img.freepik.com/premium-vector/hand-drawn-vector-seamless-pattern-with-gold-stars-dark-background-eps-10_710373-310.jpg') !important;
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding: 8px 0 !important;
  min-height: auto !important;
  animation: backgroundScroll 240s linear infinite;
}

/* Animación suave del fondo del navbar */
@keyframes backgroundScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 1000px;
  }
}

/* Logo en el header */
#header .logo img {
  max-height: 80px;
  width: auto;
  margin-right: 8px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

#header .sitename {
  font-size: 1.3rem !important;
  color: #fff !important;
}

#header .navmenu a {
  color: #fff !important;
}

#header .navmenu a:hover,
#header .navmenu a.active {
  color: #667eea !important;
}

/* Botón del header */
#header .btn-getstarted {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff !important;
  border: none;
}

#header .btn-getstarted:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Reducir efectos en dispositivos con movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .starfield-layer,
  .galaxy-nebula,
  .shooting-star::before {
    animation: none;
  }

  .eclipse-hero::before,
  .eclipse-hero::after {
    animation: none;
  }
}

/* Optimización para dispositivos móviles */
@media (max-width: 768px) {
  .starfield-layer,
  .galaxy-nebula {
    display: none; /* Reducir carga en móviles */
  }
  
  body::before,
  body::after {
    background-size: 150px 150px;
  }
}

/* Efectos adicionales para mejorar la inmersión */
.section {
  position: relative;
  z-index: 2;
}

/* Mejorar contraste del texto sobre el fondo estrellado */
.section:not(.light-background) h1,
.section:not(.light-background) h2,
.section:not(.light-background) h3,
.section:not(.light-background) h4,
.section:not(.light-background) h5,
.section:not(.light-background) h6 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.section:not(.light-background) p,
.section:not(.light-background) li {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Efecto de brillo sutil en elementos interactivos */
.btn:hover {
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3) !important;
}

/* Mejorar la visibilidad del scroll top button */
#scroll-top {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

#scroll-top:hover {
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
}

/* Efecto de partículas en hover para elementos importantes */
.hero-actions .btn:hover::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: inherit;
  transform: translate(-50%, -50%);
  animation: pulse 1s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

/* ==========================================================
   ACORDEÓN DE SERVICIOS - ESTILOS PERSONALIZADOS
   ========================================================== */

/* Contenedor del acordeón */
#serviciosAccordion {
  max-width: 1200px;
  margin: 0 auto;
}

/* Items del acordeón */
#serviciosAccordion .accordion-item {
  background: #fff;
  border: none;
  border-radius: 15px !important;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

#serviciosAccordion .accordion-item:hover {
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

/* Cabecera del acordeón */
#serviciosAccordion .accordion-header {
  border: none;
}

#serviciosAccordion .accordion-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

#serviciosAccordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: #fff;
  box-shadow: none;
}

#serviciosAccordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
  border-color: #667eea;
}

#serviciosAccordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  filter: brightness(0) invert(1);
}

#serviciosAccordion .accordion-button:hover {
  transform: translateX(5px);
}

/* Cuerpo del acordeón */
#serviciosAccordion .accordion-body {
  padding: 30px 25px;
  background: #f8fafc;
}

/* Efecto de transición suave */
#serviciosAccordion .accordion-collapse {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Iconos en los botones */
#serviciosAccordion .accordion-button i {
  font-size: 1.3rem;
  margin-right: 12px;
}

/* Responsive para acordeón */
@media (max-width: 768px) {
  #serviciosAccordion .accordion-button {
    font-size: 1rem;
    padding: 15px 20px;
  }

  #serviciosAccordion .accordion-button i {
    font-size: 1.1rem;
    margin-right: 8px;
  }

  #serviciosAccordion .accordion-body {
    padding: 20px 15px;
  }
}

/* Animación de entrada para los items */
@keyframes accordionSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#serviciosAccordion .accordion-item {
  animation: accordionSlideIn 0.5s ease-out;
}

/* Tarjetas del personal con altura igual */
#serviciosAccordion .staff-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

#serviciosAccordion .staff-card h5 {
  margin-bottom: 10px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#serviciosAccordion .staff-card p {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
}

/* Asegurar que las columnas también tengan altura igual */
#serviciosAccordion .staff-grid .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

#serviciosAccordion .staff-grid .row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

/* Tarjetas compactas para "Todo Incluido" */
#serviciosAccordion .service-item {
  padding: 10px 15px !important;
  min-height: auto;
  transition: all 0.3s ease;
}

#serviciosAccordion .service-item:hover {
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#serviciosAccordion .service-item i {
  font-size: 1.2rem !important;
  margin-right: 10px !important;
  flex-shrink: 0;
}

#serviciosAccordion .service-item span {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Reducir espaciado entre filas */
#serviciosAccordion .services-grid .row {
  row-gap: 10px !important;
}

/* Responsive para las tarjetas de servicios */
@media (max-width: 768px) {
  #serviciosAccordion .service-item {
    padding: 8px 12px !important;
  }

  #serviciosAccordion .service-item i {
    font-size: 1rem !important;
    margin-right: 8px !important;
  }

  #serviciosAccordion .service-item span {
    font-size: 0.85rem;
  }
}

/* Tarjetas de menú profesionales y compactas */
#serviciosAccordion .menu-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#serviciosAccordion .menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Header del menú más compacto */
#serviciosAccordion .menu-card .menu-header {
  margin-bottom: 20px !important;
}

#serviciosAccordion .menu-card .menu-header i {
  font-size: 2.5rem !important;
  margin-bottom: 10px !important;
}

#serviciosAccordion .menu-card .menu-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

/* Items del menú más compactos */
#serviciosAccordion .menu-card .menu-items {
  flex-grow: 1;
}

#serviciosAccordion .menu-card .menu-section {
  margin-bottom: 15px !important;
}

#serviciosAccordion .menu-card .menu-section:last-child {
  margin-bottom: 0 !important;
}

#serviciosAccordion .menu-card .menu-section h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

#serviciosAccordion .menu-card .menu-section ul {
  margin-bottom: 0;
}

#serviciosAccordion .menu-card .menu-section li {
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 2px 0;
}

/* Asegurar que las columnas tengan la misma altura */
#serviciosAccordion #collapseMenus .row.g-4 {
  display: flex;
  flex-wrap: wrap;
}

#serviciosAccordion #collapseMenus .row.g-4 > [class*='col-'] {
  display: flex;
}

/* Padding reducido en las tarjetas */
#serviciosAccordion .menu-card {
  padding: 25px !important;
}

/* Forzar ancho completo para el row de menús */
#serviciosAccordion #collapseMenus .row {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#serviciosAccordion #collapseMenus .col-lg-6 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
  width: 50% !important;
}

/* Responsive para menús */
@media (max-width: 991px) {
  #serviciosAccordion #collapseMenus .col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  #serviciosAccordion .menu-card {
    padding: 20px !important;
  }

  #serviciosAccordion .menu-card .menu-header h3 {
    font-size: 1.3rem;
  }

  #serviciosAccordion .menu-card .menu-header i {
    font-size: 2rem !important;
  }

  #serviciosAccordion .menu-card .menu-section h5 {
    font-size: 0.95rem;
  }

  #serviciosAccordion .menu-card .menu-section li {
    font-size: 0.85rem;
  }
}

/* ==========================================================
   TARJETAS "FIESTAS ÚNICAS" Y "DIVERSIÓN GARANTIZADA"
   ========================================================== */

.chef-highlights .highlight-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  animation: cardFloat 3s ease-in-out infinite, gradientShift 6s ease infinite;
  background-size: 200% 200%;
}

/* Brillo constante deslizante */
.chef-highlights .highlight-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 100%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmerConstant 3s ease-in-out infinite;
}

/* Iconos animados constantemente */
.chef-highlights .icon-wrapper {
  display: inline-block;
  animation: iconBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.chef-highlights .col-6:nth-child(1) .highlight-item {
  animation-delay: 0s;
}

.chef-highlights .col-6:nth-child(2) .highlight-item {
  animation-delay: 1s;
}

.chef-highlights .col-6:nth-child(1) .icon-wrapper {
  animation-delay: 0.5s;
}

.chef-highlights .col-6:nth-child(2) .icon-wrapper {
  animation-delay: 1.5s;
}

/* Hover intensifica efectos */
.chef-highlights .highlight-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,255,255,0.2);
  animation-play-state: paused;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shimmerConstant {
  0% { left: -150%; }
  100% { left: 150%; }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .chef-highlights .highlight-item,
  .chef-highlights .icon-wrapper,
  .chef-highlights .highlight-item::before {
    animation: none !important;
  }
}

/* ==========================================================
   OPINIONES GOOGLE REVIEWS
   ========================================================== */

.section-padding {
  padding: 80px 0;
}

.google-review-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: 280px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.google-review-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4285f4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.review-author-info {
  flex: 1;
}

.review-author {
  font-weight: 600;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.2;
}

.review-meta {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.review-rating {
  color: #fbbc04;
  font-size: 16px;
  margin-bottom: 8px;
}

.review-date {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 12px;
}

.review-text {
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
  -webkit-box-orient: vertical;
}

#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(102, 126, 234, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#reviewsCarousel .carousel-control-prev:hover,
#reviewsCarousel .carousel-control-next:hover {
  background: rgba(102, 126, 234, 1);
}

#reviewsCarousel .carousel-control-prev {
  left: -25px;
}

#reviewsCarousel .carousel-control-next {
  right: -25px;
}

#reviewsCarousel .carousel-control-prev-icon,
#reviewsCarousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .google-review-card {
    margin-bottom: 20px;
  }
}

/* ==========================================================
   TABS DE SERVICIOS - ESTILOS PERSONALIZADOS
   ========================================================== */

/* Contenedor de tabs */
.servicios-tabs {
  border-bottom: none !important;
  margin-bottom: 2rem !important;
  gap: 10px;
  flex-wrap: wrap;
  position: sticky;
  top: 65px;
  z-index: 100;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Items de navegación de tabs */
.servicios-tabs .nav-item {
  margin: 0;
}

/* Botones de tabs */
.servicios-tabs .nav-link {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px !important;
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.servicios-tabs .nav-link i {
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Tab activo */
.servicios-tabs .nav-link.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

/* Hover en tabs */
.servicios-tabs .nav-link:hover:not(.active) {
  background: #f8fafc;
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

/* Contenido de tabs */
.servicios-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.servicios-content .tab-pane {
  padding: 0;
}

.servicios-content .tab-body {
  padding: 30px 25px;
  background: #f8fafc;
}

/* Animación de entrada para tabs */
.servicios-content .tab-pane {
  animation: tabFadeIn 0.4s ease-out;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ocultar texto corto por defecto, mostrar texto completo */
.tab-text-short {
  display: none;
}

.tab-text-full {
  display: inline;
}

/* Responsive para tabs */
@media (max-width: 992px) {
  .servicios-tabs {
    justify-content: center !important;
  }

  .servicios-tabs .nav-link {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .servicios-tabs .nav-link i {
    font-size: 1.1rem;
    margin-right: 8px;
  }
}

@media (max-width: 768px) {
  .servicios-tabs {
    gap: 8px;
    top: 60px;
    padding: 12px 0;
  }

  .servicios-tabs .nav-link {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .servicios-tabs .nav-link i {
    font-size: 1rem;
    margin-right: 6px;
  }

  .servicios-content .tab-body {
    padding: 20px 15px;
  }
}

@media (max-width: 576px) {
  .servicios-tabs {
    top: 55px;
    padding: 10px 5px;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: space-between !important;
  }

  .servicios-tabs .nav-item {
    flex: 0 0 auto;
  }

  /* Pestañas inactivas - pequeñas con icono y texto corto */
  .servicios-tabs .nav-link {
    font-size: 0.65rem;
    padding: 6px 4px;
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: all 0.4s ease;
    border-radius: 10px !important;
    line-height: 1.1;
    text-align: center;
  }

  /* Mostrar solo texto corto en pestañas inactivas */
  .servicios-tabs .nav-link .tab-text-full {
    display: none;
  }

  .servicios-tabs .nav-link .tab-text-short {
    display: block;
  }

  /* Icono en pestañas inactivas */
  .servicios-tabs .nav-link i {
    font-size: 1.1rem;
    margin-right: 0;
    display: block;
  }

  /* Pestaña activa - más grande con texto completo */
  .servicios-tabs .nav-link.active {
    font-size: 0.85rem;
    padding: 10px 14px;
    width: auto;
    height: auto;
    flex: 1 1 auto;
    max-width: 180px;
    flex-direction: row;
    gap: 6px;
  }

  /* Mostrar texto completo en pestaña activa */
  .servicios-tabs .nav-link.active .tab-text-full {
    display: inline;
  }

  .servicios-tabs .nav-link.active .tab-text-short {
    display: none;
  }

  .servicios-tabs .nav-link.active i {
    font-size: 1rem;
    margin-right: 6px;
  }
}

/* Efecto de hover en tabs con animación de icono */
.servicios-tabs .nav-link:hover i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.servicios-tabs .nav-link.active i {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ==========================================================
   TARJETAS DE MENÚ MODERNAS
   ========================================================== */

.menu-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15),
              0 5px 15px rgba(102, 126, 234, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 3px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #10b981 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2),
              0 10px 25px rgba(102, 126, 234, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: #667eea;
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f3f4f6;
}

.icon-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
}

.icon-badge i {
  font-size: 2.5rem;
  color: white;
}

.menu-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.menu-subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

.menu-items {
  padding: 0;
}

.menu-section {
  margin-bottom: 25px;
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.menu-section h5 i {
  color: #667eea;
  font-size: 1.2rem;
}

.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-section li {
  padding: 8px 0;
  color: #4b5563;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-section li i {
  color: #10b981;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Animación flotante para los iconos */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .menu-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .menu-card {
    padding: 25px 20px;
  }

  .icon-badge {
    width: 70px;
    height: 70px;
  }

  .icon-badge i {
    font-size: 2rem;
  }

  .menu-header h3 {
    font-size: 1.5rem;
  }

  .menu-section h5 {
    font-size: 1rem;
  }

  .menu-section li {
    font-size: 0.9rem;
  }
}

/* ==========================================================
   CAROUSEL 3D DE TEMÁTICAS - DISEÑO INMERSIVO
   ========================================================== */

/* Contenedor principal del carousel */
.tematicas-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 10px 20px 40px;
}

/* Título de temáticas con color claro */
#tematicas .section-title h2,
#tematicas .section-title p {
  color: #f8fafc !important;
}

/* Loading indicator */
.carousel-loading {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 30px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  border: 6px solid rgba(102, 126, 234, 0.2);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Galería hover effects - Imágenes más pequeñas en reposo */
.gallery-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.gallery-wrap img {
  transition: transform 0.5s ease;
  transform: scale(0.85); /* Imágenes más pequeñas en reposo */
}

.gallery-wrap:hover img {
  transform: scale(1); /* Tamaño normal al hacer hover */
}

/* ==========================================================
   SLIDER MÁGICO CON EFECTOS 3D
   ========================================================== */

.magic-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.magic-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(102,126,234,0.2);
  backdrop-filter: blur(10px);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
}

.magic-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%) scale(0.7) rotateY(45deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}

.magic-slide.active {
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 50px rgba(102,126,234,0.3);
}

.magic-slide.prev {
  transform: translate(-120%, -50%) scale(0.6) rotateY(25deg);
  opacity: 0.5;
  z-index: 5;
}

.magic-slide.next {
  transform: translate(20%, -50%) scale(0.6) rotateY(-25deg);
  opacity: 0.5;
  z-index: 5;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.magic-slide:hover .slide-content img {
  transform: scale(1.1);
}

.magic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(102,126,234,0.8), rgba(118,75,162,0.8));
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.magic-slide:hover .magic-overlay {
  opacity: 1;
}

.zoom-btn {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.zoom-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.2);
  box-shadow: 0 0 30px rgba(255,255,255,0.5);
}

/* Botones mágicos */
.magic-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102,126,234,0.9), rgba(118,75,162,0.9));
  border: 3px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.magic-btn:hover {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 15px 40px rgba(102,126,234,0.4);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Indicadores mágicos */
.magic-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

.magic-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.5);
}

.magic-dot.active {
  width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 0 20px rgba(102,126,234,0.5);
}



/* Efectos de partículas */
.slide-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.4), transparent);
  background-size: 100px 100px;
  animation: particleFloat 10s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.magic-slide.active .slide-particles {
  opacity: 1;
}

@keyframes particleFloat {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

/* Responsive */
@media (max-width: 768px) {
  .magic-slider {
    height: 400px;
  }
  
  .magic-slide {
    width: 300px;
    height: 300px;
  }
  
  .magic-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .magic-slider {
    height: 350px;
  }
  
  .magic-slide {
    width: 250px;
    height: 250px;
  }
  
  .magic-slide.prev,
  .magic-slide.next {
    opacity: 0;
    pointer-events: none;
  }
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-wrap:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.gallery-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(102,126,234,0.9);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.gallery-links a:hover {
  background: #667eea;
  transform: scale(1.1);
}



.carousel-loading p {
  font-size: 1.3rem;
  color: #667eea;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Carousel 3D principal - OPTIMIZADO PARA IMÁGENES VERTICALES */
.carousel-3d {
  position: relative;
  width: 100%;
  height: 700px;
  perspective: 2000px;
  overflow: visible;
  margin-bottom: 40px;
}

/* Track del carousel con efecto 3D */
.carousel-track-3d {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Items individuales del carousel - FORMATO VERTICAL */
.carousel-item-3d {
  position: absolute;
  width: 400px;
  height: 650px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(102, 126, 234, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  cursor: pointer;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

/* Imagen dentro del item - AJUSTADA PARA VERTICAL */
.carousel-item-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
  filter: brightness(0.95);
}

.carousel-item-3d:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Item activo (centro) */
.carousel-item-3d.active {
  z-index: 10;
  transform: translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
  filter: blur(0);
}

/* Item anterior (izquierda) */
.carousel-item-3d.prev {
  z-index: 5;
  transform: translateX(-450px) scale(0.75) rotateY(20deg);
  opacity: 0.6;
  filter: blur(2px);
}

/* Item siguiente (derecha) */
.carousel-item-3d.next {
  z-index: 5;
  transform: translateX(450px) scale(0.75) rotateY(-20deg);
  opacity: 0.6;
  filter: blur(2px);
}

/* Items ocultos */
.carousel-item-3d.hidden {
  z-index: 1;
  opacity: 0;
  transform: scale(0.3);
  pointer-events: none;
}

/* Overlay DESHABILITADO - Fotos limpias sin texto */
.carousel-item-overlay {
  display: none !important;
}

/* Botones de navegación - SIN SCROLL */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(102, 126, 234, 0.4);
  backdrop-filter: blur(10px);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.carousel-nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: linear-gradient(135deg, rgba(118, 75, 162, 1) 0%, rgba(102, 126, 234, 1) 100%);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(102, 126, 234, 0.6);
}

.carousel-nav-btn:focus {
  outline: none;
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Botón fullscreen - SOLO VISIBLE EN MÓVIL */
.carousel-fullscreen-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.3rem;
  display: none; /* Oculto por defecto en desktop */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Ocultar fullscreen en móvil */
@media (max-width: 768px) {
  .carousel-fullscreen-btn {
    display: none !important;
  }
}

/* Indicadores - SIN SCROLL */
.carousel-indicators-3d {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 20px;
}

.carousel-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  border: 2px solid rgba(102, 126, 234, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.carousel-indicator:hover {
  transform: scale(1.2);
  background: rgba(102, 126, 234, 0.6);
}

.carousel-indicator:focus {
  outline: none;
}

.carousel-indicator.active {
  width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Thumbnails preview */
.carousel-thumbnails {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #667eea rgba(102, 126, 234, 0.2);
}

.carousel-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.carousel-thumbnails::-webkit-scrollbar-track {
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
}

.carousel-thumbnails::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 10px;
}

.carousel-thumbnail {
  width: 80px;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.carousel-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
  filter: grayscale(30%) brightness(0.8);
}

.carousel-thumbnail:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(102, 126, 234, 0.5);
}

.carousel-thumbnail:hover img {
  filter: grayscale(0%) brightness(1);
}

.carousel-thumbnail.active {
  border-color: #667eea;
  box-shadow:
    0 6px 20px rgba(102, 126, 234, 0.3),
    0 0 20px rgba(102, 126, 234, 0.2);
}

.carousel-thumbnail.active img {
  filter: grayscale(0%) brightness(1);
}

/* Efecto de partículas flotantes */
.carousel-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(102, 126, 234, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(118, 75, 162, 0.3), transparent);
  background-size: 300px 300px;
  background-position: 0 0;
  animation: particlesFloat 20s linear infinite;
  pointer-events: none;
  z-index: 5;
}

@keyframes particlesFloat {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 300px 300px;
  }
}

/* Borde animado con gradiente */
.carousel-item-3d::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    #667eea,
    #764ba2,
    #10b981,
    #f59e0b,
    #ec4899,
    #667eea
  );
  background-size: 400% 400%;
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: gradientRotate 8s ease infinite;
}

.carousel-item-3d.active::before {
  opacity: 1;
}

@keyframes gradientRotate {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Modo fullscreen - OPTIMIZADO PARA IMÁGENES VERTICALES */
.carousel-3d.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  margin: 0;
  padding: 20px;
}

.carousel-3d.fullscreen .carousel-item-3d {
  width: auto;
  height: 90vh;
  max-height: 900px;
  max-width: 600px;
}

.carousel-3d.fullscreen .carousel-item-3d.prev {
  transform: translateX(-500px) scale(0.7) rotateY(20deg);
}

.carousel-3d.fullscreen .carousel-item-3d.next {
  transform: translateX(500px) scale(0.7) rotateY(-20deg);
}

.carousel-3d.fullscreen .carousel-fullscreen-btn i::before {
  content: "\f1de";
}

/* Fullscreen responsive */
@media (max-width: 768px) {
  .carousel-3d.fullscreen {
    padding: 10px;
  }

  .carousel-3d.fullscreen .carousel-item-3d {
    height: 85vh;
    max-width: 500px;
  }

  .carousel-3d.fullscreen .carousel-item-3d.prev,
  .carousel-3d.fullscreen .carousel-item-3d.next {
    opacity: 0;
    pointer-events: none;
  }
}

/* Responsive - OPTIMIZADO PARA IMÁGENES VERTICALES */
@media (max-width: 1200px) {
  .carousel-3d {
    height: 650px;
  }

  .carousel-item-3d {
    width: 360px;
    height: 600px;
  }

  .carousel-item-3d.prev {
    transform: translateX(-380px) scale(0.7) rotateY(18deg);
  }

  .carousel-item-3d.next {
    transform: translateX(380px) scale(0.7) rotateY(-18deg);
  }
}

@media (max-width: 992px) {
  .carousel-3d {
    height: 600px;
  }

  .carousel-item-3d {
    width: 330px;
    height: 550px;
  }

  .carousel-item-3d.prev {
    transform: translateX(-320px) scale(0.65) rotateY(15deg);
  }

  .carousel-item-3d.next {
    transform: translateX(320px) scale(0.65) rotateY(-15deg);
  }

  .carousel-nav-btn {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .carousel-3d {
    height: 550px;
  }

  .carousel-item-3d {
    width: 300px;
    height: 500px;
  }

  .carousel-item-3d.prev,
  .carousel-item-3d.next {
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
  }

  .carousel-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  .carousel-thumbnail {
    width: 70px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .carousel-3d {
    height: 500px;
  }

  .carousel-item-3d {
    width: 280px;
    height: 460px;
  }

  .carousel-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .carousel-thumbnail {
    width: 60px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .carousel-3d {
    height: 450px;
  }

  .carousel-item-3d {
    width: 260px;
    height: 420px;
  }

  .carousel-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-thumbnail {
    width: 55px;
    height: 95px;
  }
}

/* Animación de entrada */
@keyframes carouselSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tematicas-carousel-container {
  animation: carouselSlideIn 0.8s ease-out;
}

/* Touch/Swipe support visual feedback */
.carousel-track-3d.swiping {
  transition: none;
}

.carousel-track-3d.swiping .carousel-item-3d {
  transition: transform 0.1s linear;
}

/* Reducir movimiento si está preferido */
@media (prefers-reduced-motion: reduce) {
  .carousel-track-3d,
  .carousel-item-3d,
  .carousel-nav-btn,
  .carousel-indicator,
  .carousel-thumbnail {
    transition: none;
  }

  .carousel-3d::before,
  .carousel-item-3d::before,
  .loading-spinner {
    animation: none;
  }
}

/* ==========================================================
   ADICIONALES SECTION
   ========================================================== */

.adicionales-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.adicionales-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.adicionales-section .section-title h2 {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.adicionales-section .section-title p {
  color: #f8fafc;
  font-size: 1.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Grid de Adicionales - Diseño optimizado para 7 items */
.adicionales-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.adicionales-section .row > div:nth-last-child(1):nth-child(7) {
  /* Última tarjeta cuando hay 7 elementos - centrada */
  margin: 0 auto;
}

/* Cards de Adicionales */
.adicional-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.adicional-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #f9ca24, #6c5ce7, #00b894);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 10;
}

.adicional-card:hover::before {
  transform: scaleX(1);
}

.adicional-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
}

/* Imagen de Adicionales */
.adicional-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.adicional-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.adicional-card:hover .adicional-image img {
  transform: scale(1.15);
}

/* Overlay con icono */
.adicional-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.adicional-card:hover .adicional-overlay {
  opacity: 1;
}

.adicional-overlay i {
  font-size: 4rem;
  color: #ffffff;
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Iconos de Adicionales (para cards sin imagen) */
.adicional-icon {
  width: 90px;
  height: 90px;
  margin: 25px auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.adicional-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #f9ca24, #6c5ce7, #00b894);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.adicional-card:hover .adicional-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.adicional-card:hover .adicional-icon::before {
  opacity: 1;
  animation: iconPulse 1.5s infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

/* Colores específicos para cada adicional */
.adicional-card:nth-child(1) .adicional-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.adicional-card:nth-child(2) .adicional-icon {
  background: linear-gradient(135deg, #f9ca24, #f0932b);
}

.adicional-card:nth-child(3) .adicional-icon {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.adicional-card:nth-child(4) .adicional-icon {
  background: linear-gradient(135deg, #00b894, #55efc4);
}

.adicional-card:nth-child(5) .adicional-icon {
  background: linear-gradient(135deg, #0984e3, #74b9ff);
}

.adicional-card:nth-child(6) .adicional-icon {
  background: linear-gradient(135deg, #fd79a8, #fdcb6e);
}

.adicional-card:nth-child(7) .adicional-icon {
  background: linear-gradient(135deg, #e17055, #fab1a0);
}

/* Títulos de cards */
.adicional-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  margin-top: 0;
  padding: 25px 25px 0 25px;
  transition: color 0.3s ease;
}

/* Títulos de cards con icono solamente */
.adicional-card .adicional-icon + h3 {
  padding-top: 0;
}

.adicional-card:hover h3 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Descripciones */
.adicional-card p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  padding: 0 25px 35px 25px;
}

/* CTA Section */
.adicionales-cta {
  margin-top: 60px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 50px 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.adicionales-cta .cta-content h4 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.adicionales-cta .cta-content p {
  color: #f8fafc;
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.btn-adicionales-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-adicionales-cta:hover {
  background: #128C7E;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-adicionales-cta i {
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .adicionales-section {
    padding: 60px 0;
  }

  .adicional-card {
    padding: 0;
    margin-bottom: 20px;
  }

  .adicional-image {
    height: 200px;
  }

  .adicional-overlay i {
    font-size: 3rem;
  }

  .adicional-icon {
    width: 75px;
    height: 75px;
    font-size: 2rem;
    margin: 20px auto 20px;
  }

  .adicional-card h3 {
    font-size: 1.3rem;
    padding: 20px 20px 0 20px;
  }

  .adicional-card .adicional-icon + h3 {
    padding-top: 0;
  }

  .adicional-card p {
    padding: 0 20px 30px 20px;
  }

  .adicionales-cta {
    padding: 35px 20px;
    margin-top: 40px;
  }

  .adicionales-cta .cta-content h4 {
    font-size: 1.5rem;
  }

  .adicionales-cta .cta-content p {
    font-size: 1rem;
  }

  .btn-adicionales-cta {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

/* ============================================
   GLightbox - Mejorar visibilidad de controles
   ============================================ */

/* Mejorar estilo de las flechas sin romper funcionalidad */
.glightbox-container .gslide-image .gnext,
.glightbox-container .gslide-image .gprev {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.glightbox-container .gslide-image .gnext:hover,
.glightbox-container .gslide-image .gprev:hover {
  background: rgba(102, 126, 234, 0.9);
  transform: scale(1.1);
}

/* Asegurar que las flechas sean visibles en móvil */
@media (max-width: 768px) {
  .glightbox-container .gslide-image .gnext,
  .glightbox-container .gslide-image .gprev {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
  }

  .glightbox-container .gslide-image .gnext {
    right: 10px;
  }

  .glightbox-container .gslide-image .gprev {
    left: 10px;
  }
}
