@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    /* font-family: 'Montserrat'; */
    font-family: 'Merriweather Sans', sans-serif;
    /* font-family: 'Montserrat'; */
    /* font-family: 'Montserrat'; */
    /* font-family: 'Montserrat'; */
    /* font-family: 'Montserrat';s */
}
h1{
    color: rgb(255, 255, 255);
    margin: auto;
}
h2{
    color: rgb(11, 102, 155);
}
.navbar{
    background-color: rgb(11, 102, 155);
}
.navbar ul li a{
    color: rgb(11, 102, 155);
}
.navbar ul li a:hover{
    font-weight: 800;
}
.ancho{
    max-width: 1200px;
}


.presentacion p {
    background: rgba(0, 0, 0, 0.432); /* Fondo negro con opacidad */
    color: white;
    padding: 15px 20px; 
    border-radius: 5px;
    max-width: 500px;
    font-size: 4rem;
}

.img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    /* background: rgba(0, 0, 0, 0.5); */
    /* padding: 10px 20px; */
    /* border-radius: 10px; */
    /* text-align: center; */
}

.comprarAca{
        position: relative;
        width: 100%;
        /* height: 90vh;  */
        background: url('img/paris.jpg') center/cover no-repeat fixed; /* Imagen de fondo fija */
        display: flex;
        align-items: center; /* Centrar verticalmente */
        justify-content: flex-start; /* Alinear el contenido a la izquierda */
        padding-left: 5%; /* Espaciado desde la izquierda */
}

footer{
    background-color: rgb(11, 102, 155);
}



.contenedor-galeria {
    max-width: 1200px;
    margin: auto;
  }

  .imagen-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .imagen-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .imagen-wrapper:hover img {
    transform: scale(1.05);
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .imagen-wrapper:hover .overlay {
    opacity: 1;
  }

  .overlay h3 {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    padding: 0 10px;
  }
  .overlay p {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    padding: 0 10px;
  }