/* Ampliar imagenes */

.zoom {
    position: relative;
    width: min(300px, 90vw);
    height: 50vmin;
    border: 6px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: zoom-in;
    margin: auto; /* Centra el elemento .zoom en la página */
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


/* Carrusel */

.carousel {
    width: 80%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-image {
    width: 200px;
    height: 150px;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}


.carousel-image:hover {
    transform: scale(1.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.zoomed-image {
    max-width: 90%;
    max-height: 90%;
}

/* Cuerpo de imagenes 1 */

.galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

.ampliacion {
    position: relative;
    width: min(300px, 90vw);
    height: 30vmin;
    border: 6px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: zoom-in;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-ampliada {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Cuerpo de paigna IMG  */


div.polaroid {
    width: 100%; /* Ajusta el ancho para que se adapte al contenedor */
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    margin: 10px auto; /* Centra el div polaroid dentro de su contenedor y añade margen */
    padding: 10px; /* Añade algo de padding para que las imágenes no toquen los bordes */
    overflow: hidden; /* Asegura que el contenido no se desborde */
  }
  
  img.img-fluid {
    width: 100%;
   /*height: 450px !important;*/
    border-radius: 10px; /* Añade un pequeño borde redondeado a las imágenes */
    object-fit: cover; /* Asegura que la imagen cubra completamente el contenedor */
    height: auto; /* Ajusta la altura automáticamente */
  }
  
  div.contenedor {
    text-align: center;
    padding: 10px 20px;
  }
  


  /* whatsa */

  /* Boton Whatsapp */
.btn-wsp {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 63px;
    bottom: 25px;
    right: 25px;
    background: #12843c;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 300ms ease;
}

.btn-wsp:hover {
    background: #20ba5a !important;
}


.text {
    font-size: 30px; /* Ajusta el tamaño del texto aquí */
    /* font-weight: bold; Si deseas que el texto sea negrita */
    color: #333; /* Cambia el color del texto si lo deseas */
  }

  /* nav */

  #custom-nav-menu-container {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    background-color: #f8f9fa; /* Fondo ligero para contraste */
    border-bottom: 1px solid #ddd; /* Línea sutil en la parte inferior */
  }
  
  .custom-navbar-nav .custom-nav-link {
    color: #333; /* Color de texto más oscuro para formalidad */
    margin-right: 15px;
    text-decoration: none;
    padding: 10px 15px; /* Espaciado adicional para mayor clicabilidad */
    font-weight: 500; /* Negrita ligera para claridad */
  }
  
  .custom-navbar-nav .custom-nav-link:hover {
    color: #007bff; /* Color azul para el hover */
    text-decoration: underline;
  }
  
  .custom-navbar-nav .dropdown-menu {
    background-color: #ffffff; /* Fondo blanco para claridad */
    border: 1px solid #ddd; /* Borde sutil para definición */
  }
  
  .custom-navbar-nav .dropdown-item {
    color: #333;
    text-decoration: none;
  }
  
  .custom-navbar-nav .dropdown-item:hover {
    background-color: #f1f1f1; /* Fondo gris claro para hover */
    color: #007bff;
  }
  
  .custom-navbar-brand {
    font-weight: bold;
    color: #333;
    text-decoration: none;
  }
  
  .custom-navbar-brand:hover {
    color: #007bff;
  }
  
  .custom-navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    justify-content: center;
  }
  