/*======================
      GALERÍA
=======================*/

.galeria{

    width:90%;
    margin:80px auto;

}

.titulo-galeria{

    text-align:center;
    margin-bottom:45px;
    max-width:640px;
    margin-left:auto;
    margin-right:auto;

}

.titulo-galeria h2{

    font-size:42px;
    line-height:1.25;
    color:#ffe9c7;
    letter-spacing:1px;
    font-weight:600;
    margin-bottom:14px;
    text-shadow:0 4px 18px rgba(0,0,0,.55);

}

.titulo-galeria p{

    color:#f2f2f2;
    font-size:17px;
    text-shadow:0 2px 10px rgba(0,0,0,.5);

}

.contenedor-slider{

    display:flex;
    align-items:center;
    gap:15px;

}

.slider{

    display:flex;
    gap:20px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    flex:1;

}

.slider::-webkit-scrollbar{

    display:none;

}

.item{

    min-width:280px;

    height:190px;

    border-radius:18px;

    overflow:hidden;

    flex-shrink:0;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    transition:.4s;

}

.item:hover{

    transform:translateY(-8px);

}

.item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.item:hover img{

    transform:scale(1.12);

}

.boton-redondo{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#fff;
    font-size:24px;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.boton-redondo:hover{

    background:#198754;

    color:white;

}