﻿/* Carrusel móvil mejorado - 02/09/2025 */
@media (max-width: 900px) {
  /* Carrusel a pantalla completa */
  .mobile-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
  }
  
  .mobile-carousel.active {
    display: flex;
    flex-direction: column;
  }
  
  /* Contenedor de imágenes */
  .mc-slides {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  
  /* Slide individual */
  .mc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .mc-slide.active {
    display: flex;
  }
  
  /* Imagen en el slide */
  .mc-slide img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
  }
  
  /* Imagen confidencial */
  .mc-slide img.mc-confidential {
    filter: blur(12px);
    cursor: pointer;
  }
  
  /* Controles de navegación */
  .mc-navigation {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  /* Botones de navegación */
  .mc-prev, .mc-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
  }
  
  /* Puntos de navegación */
  .mc-dots {
    display: flex;
    gap: 10px;
  }
  
  .mc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
  }
  
  .mc-dot.active {
    background: white;
  }
  
  /* Botón de cierre */
  .mc-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
  }
}

