/* Estilos personalizados */
/* Añade tus estilos aquí */

body {
  padding-top: 0px; /* Altura de la barra de navegación */
}

/* Media queries para dispositivos móviles */
@media (max-width: 768px) {
  body {
    padding-top: 0px; /* Ajuste para dispositivos móviles */
  }
}


.heart-icon {
  color: rgb(233, 50, 105); /* Color rosa para el corazón */
}


.custom-container {
  background-color: #f0f0f0;
  width: 100%;
  padding: 20px;
  max-width: 1500px;
}




  
  
  
 
  .btn-primary {
    background-color: #ff5a5f;
    border-color: #ff5a5f;
  }
  
  .btn-primary:hover {
    background-color: #e04246;
    border-color: #e04246;
  }


  /** NUEVO CODIGO **/

  .card {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .card-img-top {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
  }
  
  .card-title {
    font-size: 1.25rem;
    color: #333;
    margin-top: 10px;
  }
  
  .card-text {
    color: #666;
  }
  
  .color-palette {
    display: flex;
    margin-top: 5px;
  }
  
  .color {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
  }
  
  .color:hover {
    transform: scale(1.2);
  }
  
  /* Estilos para el modal y el carrusel de imágenes */
.modal-body {
    text-align: center;
  }
  
  .carousel-item img {
    max-height: 400px;
    margin: auto;
  }

  .carousel-control-prev{
    width: 5% !important;
    height: 50% !important;
  }

  .carousel-control-next{
    width: 5% !important;
    height: 50% !important;

    
  }




  /* ESTILOS PARA CONTROLA EL VIDEO  */

  .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Relación 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}