.custom-card {
  border: none;
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none; /* elimina sombra si viene por defecto */
}

.custom-cardB{
  border-radius: 15px;
  border: none;
}

.card-img-top {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  display: block;
  border-radius: 15px; /* opcional si quieres que la imagen también tenga bordes redondeados */
}

.card-img-top:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}


#comboModal .modal-content {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important; /* Sin bordes redondeados */
}

#comboModal img {
  border-radius: 0 !important; /* Quitar bordes redondeados en las imágenes también */
  object-fit: cover;
  max-height: 90vh;
}


#laurenModal .modal-content {
  background-color: transparent !important; /* Sin fondo visible */
  border: none !important;                   /* Sin borde */
  box-shadow: none !important;               /* Sin sombra */
  max-width: 95vw;                           /* Más ancho, casi toda la ventana */
  width: 95vw;
  height: auto;
  max-height: 95vh;                          /* Alto máximo mayor */
}

#laurenModal .modal-dialog {
  max-width: 95vw;  /* Hace que el diálogo sea más ancho */
  width: 95vw;
  margin: 1.75rem auto;  /* Centrado vertical y horizontal */
}

#laurenModal .modal-body {
  background-color: transparent !important; /* Sin fondo */
  padding: 0 !important;
}

#laurenModal .modal-body > div {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

#laurenModal img {
  flex: 1 1 auto;
  max-height: 90vh;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}


/*seccion de estilos para banner de reproduccion automatica*/

#player {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }
    #overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      z-index: 2;
    }
    #unmuteButton {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 3;
      padding: 10px 20px;
      background: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }