
  .faq-wrapper-dark {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    border-radius: 8px;
    width: 100%;
  }

  .faq-category-list-dark {
    display: flex;
    flex-direction: column; /* vertical */
    gap: 10px;
    margin-bottom: 0.5rem;
  }

  .faq-category-btn-dark {
    background: #222;
    border: none;
    padding: 12px 20px;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .faq-category-btn-dark:hover {
    background-color: #f44336;
    color: white;
  }

  .faq-category-btn-dark.active-dark {
    background-color: #f44336;
    color: white;
  }

  .faq-items-container-dark {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-items-container-dark.active-dark {
    /* max-height suficientemente grande para el contenido */
    max-height: 1000px;
  }

  .faq-entry-dark {
    background-color: #222;
    margin-bottom: 10px;
    border-radius: 6px;
    padding: 0 15px;
  }

  .faq-entry-dark summary {
    cursor: pointer;
    padding: 10px 0;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
  }

  .faq-entry-dark summary::-webkit-details-marker {
    display: none;
  }

  .faq-entry-dark p {
    padding: 10px 0 15px 0;
    line-height: 1.4;
    font-size: 0.95rem;
    color: #ccc;
  }
  
    .btn-fixed-cotizar {
  position: fixed !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background-color: #e63946 !important; /* Rojo intenso */
  color: white !important;
  padding: 15px 30px !important;
  border-radius: 50px !important;
  font-weight: bold !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  z-index: 9999 !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
  transition: background-color 0.3s !important;
}

.btn-fixed-cotizar:hover {
  background-color: #c82333 !important;
}

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
        }

  
        .masonry-gallery {
            columns: 3;
            column-gap: 15px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            background-color: #fff;
        }

        .masonry-item:hover {
            transform: scale(1.02);
        }

        .masonry-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .loading {
            text-align: center;
            padding: 20px;
            font-size: 16px;
            color: #666;
            display: none;
            clear: both;
        }

        /* Modal - Versión corregida */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
        }

        .modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            margin: 20px;
        }

        .modal-img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
            object-fit: contain;
        }

        .close {
            position: fixed;
            top: 20px;
            right: 20px;
            color: #fff;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            background: rgba(0,0,0,0.5);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .modal-nav {
            position: fixed;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 1000;
        }

        .nav-btn {
            color: white;
            font-size: 24px;
            cursor: pointer;
            background: rgba(0,0,0,0.5);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            pointer-events: auto;
            transition: background 0.3s;
        }

        .nav-btn:hover {
            background: rgba(0,0,0,0.8);
        }

        /* Responsive - 3 columnas en todos los tamaños */
        @media (max-width: 1200px) {
            .masonry-gallery {
                columns: 3;
                column-gap: 10px;
            }
        }

        @media (max-width: 768px) {
            .masonry-gallery {
                columns: 3;
                column-gap: 8px;
            }
            
            .masonry-item {
                margin-bottom: 8px;
            }
            
            .modal-content {
                max-width: 95%;
            }
            
            .modal-img {
                max-height: 75vh;
            }
            
            .close {
                top: 15px;
                right: 15px;
                font-size: 25px;
                width: 35px;
                height: 35px;
            }
            
            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .masonry-gallery {
                columns: 3;
                column-gap: 5px;
            }
        }
        
        
/* Botón rojo flotante centrado, ancho completo */
.boton-flotante-rojo {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background-color: #e63946 !important;
  color: white !important;
  padding: 20px 0 !important;
  font-size: 18px !important;
  font-weight: bold !important;
  border: none !important;
  border-radius: 0 !important;
  z-index: 9999 !important;
  cursor: pointer !important;
  text-transform: uppercase;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  text-align: center;
}

/* Modal oscuro */
.modal-cotizacion {
  display: none;
  position: fixed;
  z-index: 9998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.9); /* Más oscuro */
}

/* Contenido interno del modal */
.modal-contenido-cotizacion {
  background-color: #111; /* Fondo dark */
  color: #fff; /* Texto blanco */
  margin: 5% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 960px;
  position: relative;
}

/* Botón cerrar */
.cerrar-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}



    /* Espacio reducido entre columnas y filas */
    .row.custom-gap {
      margin-left: -4px;
      margin-right: -4px;
    }

    .row.custom-gap > [class^="col-"] {
      padding-left: 4px;
      padding-right: 4px;
      margin-bottom: 4px;
    }
  
.opinion-slider-container {
  width: 100%;
  max-width: 700px;
  margin: 3rem auto;
 
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.opinion-slider-fade {
  position: relative;
  min-height: 160px;
}

.opinion-slide {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.opinion-slide.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.opinion-text {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.opinion-author {
  font-size: 0.95rem;
  color: #ccc;
}
.pack-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pack-columns {
    flex-direction: row;
    align-items: stretch;
  }

  .pack-img {
    width: 50%;
    object-fit: cover;
  }

  .tabla-wrapper {
    width: 50%;
  }
}

  .slots-container {
    width: 100%;
    padding: 0 0.5rem;
    margin: 0 auto;
    overflow: hidden;
  }

  .slots {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap; /* Forzar 1 línea siempre */
    gap: 0.5rem;
  }

  .slot {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  aspect-ratio: 2/3; /* Por defecto (escritorio) */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (max-width: 768px) {
  .slot {
    aspect-ratio: 2/5; /* Solo para móviles */
  }
}


  .slot-inner {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(1,66,126,1) 0%, rgba(0,0,0,1) 100%);
    z-index: 1;
  }

  .sandwich-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
  }

  .overlay-opacity {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 3;
    pointer-events: none;
    transition: background-color 0.3s ease-in-out;
  }

  .sandwich-image-titulo {
    position: absolute;
    top: 33px;
    left: 0;
    height: 78%;
    width: 100%;
    object-fit: contain;
    z-index: 4;
    transition: opacity 0.3s ease-in-out;
  }

  .slot-label {
    text-align: center;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 0;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 4;
  }
  #select-container {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

#select-container.visible {
  opacity: 1;
  max-height: 300px; /* Ajusta si lo necesitas */
}
.btn-combo {
  padding: 10px 16px;
  border-radius: 8px;
  border: 2px solid #ffc107; /* borde más notorio y con color llamativo */
  background-color: #333;
  color: #fff;
  white-space: nowrap;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* sombra sutil */
}

.btn-combo:hover {
  background-color: #444;
  border-color: #ffca2c;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* sombra más profunda al pasar el mouse */
}


  /* Estilo compacto en móvil */
  @media (max-width: 768px) {
    .btn-combo {
      font-size: 8px !important;
      padding: 3px 3px !important;
    }
  }
#mensaje-detalle {
  white-space: pre-line;
}
.slot-img-anim {
  animation: slotFade 0.3s ease-in-out;
}
@keyframes slotFade {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
  /* ❌ Eliminamos media queries que rompen la alineación */


    .faq-container {
      max-width: 800px;    /* Ajusta según tu necesidad */
      margin: 0 auto;      /* Centra el contenedor */
      padding: 2rem;
    }

    .faq-container h1 {
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 600;
      color: #ffffff;
    }

    /* ---------------------------------------
       ESTILOS PARA <details> Y <summary>
       --------------------------------------- */
    .faq-container details {
      background-color: #1e1e1e;
      margin-bottom: 1rem;
      padding: 1rem;
      border-radius: 4px;
      border: 1px solid #333;
      position: relative;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .faq-container details:hover {
      background-color: #252525;
    }

    /* Quita el triángulo desplegable nativo en Chrome/Safari */
    .faq-container details summary::-webkit-details-marker {
      display: none;
    }

    /* Estilo del <summary>: pregunta */
    .faq-container details summary {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 1.1rem;
      font-weight: 600;
      outline: none;
      user-select: none; /* Evita la selección del texto al hacer clic */
    }

    /* Ajustamos el icono + o - con ::after */
    .faq-container details summary::after {
      content: "+";
      float: right;
      transition: transform 0.3s ease;
    }

    /* Cuando se abra (open) el details, cambia a "-" */
    .faq-container details[open] summary::after {
      content: "-";
      transform: rotate(180deg);
    }

    /* ---------------------------------------
       CONTENIDO DE LA RESPUESTA (.faq-content)
       --------------------------------------- */
    .faq-content {
      /* Transición con max-height y opacity */
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.4s ease;
      margin-top: 0.5rem;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    /* Al abrirse el <details>, aplicamos un max-height grande y opacity:1 */
    .faq-container details[open] .faq-content {
      max-height: 1000px; /* Ajusta según lo extenso del contenido */
      opacity: 1;
    }

    /* Asegura que links y texto dentro de .faq-content sean visibles */
    .faq-content a {
      color: #ffd700; /* Ejemplo: dorado */
      text-decoration: underline;
    }

/* Estilo base para el select */
select {
    width: 200px;
    padding: 5px;
    font-size: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    appearance: none; /* Elimina el estilo por defecto del navegador */
    -webkit-appearance: none; /* Para navegadores basados en WebKit como Chrome y Safari */
    -moz-appearance: none; /* Para Firefox */
    cursor: pointer;
}

/* Estilo para el ícono de flecha */
select {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

/* Estilo cuando el select está enfocado */
select:focus {
    border-color: #666;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Estilo para las opciones */
select option {
    background-color: #333;
    color: #fff;
}

/* Estilo para las opciones cuando se pasa el mouse */
select option:hover {
    background-color: #555;
}

/* Estilo para las opciones seleccionadas */
select option:checked {
    background-color: #666;
}
input[type="date"]::-webkit-calendar-picker-indicator, input[type="time"]::-webkit-calendar-picker-indicator{
    cursor: pointer;
    border-radius: 4px;
    margin-right: 2px;
    opacity: 0.9;
    filter: invert(0.9);
    flex: none;
}
 .hidden {
            display: none;
        }
        .container {
            margin-bottom: 20px; /* Para separación entre el formulario y el contenido debajo */
        }
        
        /* Ocultar el video y el mensaje inicialmente */
 #video-container {
            display: none; /* Ocultar el contenedor del video inicialmente */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
        }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  margin-top: 13px;
}

/* Modal */
.modal-wsp {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-contenido {
  background-color: #e5ddd5; /* WhatsApp chat background */
  margin: 10% auto;
  padding: 2rem;
  border-radius: 14px;
  width: 90%;
  max-width: 400px;
  color: #222;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.modal-contenido h4 {
  color: #075e54;
  margin-bottom: 1rem;
}

.modal-contenido input {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 0.95rem;
}

.modal-contenido input::placeholder {
  color: #666;
}

.modal-contenido button {
  padding: 12px 20px;
  background-color: #25d366;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.modal-contenido button:hover {
  background-color: #1ebe5b;
}

.cerrar {
  color: #555;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  margin-top: -12px;
}

.cerrar:hover {
  color: #000;
}
.modal-contenido input {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #222; /* Fondo oscuro */
  color: #fff; /* Texto claro */
  font-weight: 500;
}

/* Placeholder oscuro */
.modal-contenido input::placeholder {
  color: #ccc;
}

/* Estilo específico para input tipo fecha */
.modal-contenido input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* Icono calendario blanco */
  cursor: pointer;
}

/* Safari/Edge – asegura color de los campos */
.modal-contenido input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  color: #fff;
}


.pack-container {
 
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 1000px;
  margin: auto;
}

.pack-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.pack-img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

.tabla-pack {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
  border: 2px solid #fff;
}

.tabla-pack th, .tabla-pack td {
  border: 1px solid #fff;
  padding: 1rem;
  text-align: center;
}

.tabla-pack thead {
  background-color: #e63946;
  color: #fff;
}

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

.btn-lo-quiero {
  width: 100% !important;
  background-color: #e63946 !important; /* Rojo intenso */
  padding: 15px !important;
  font-weight: bold !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
}



.form-pack {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.form-pack label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.form-pack input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #fff;
  color: #000;
}

.form-pack button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.mensaje-confirmacion {
  background-color: #2e2e2e;
  padding: 1rem;
  border-radius: 8px;
  color: #25d366;
  font-weight: bold;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .pack-content {
    flex-direction: column;
    align-items: center;
  }
}
