.galeriaFotos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    font-family: 'Nunito';
    margin: 10rem auto;
    overflow: hidden;
}

.galeriaFotos #texto {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: #363040;
}

.galeriaFotos h1 {
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.galeriaFotos p {
    font-weight: 500;
    font-size: clamp(1.3rem, 3.3vw, 1.5rem);
    text-align: center;
    width: 50%;
    color: black;
}

#carrosselGaleria {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 0.5rem;
    overflow: hidden;
    width: 90%;
}

.figure {
    width: 25rem;
    height: 25rem;
    background-color: brown;
    background: #363040;
    border-radius: 10px;
}

.figure img {
    width: 100%;
    height: 65%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.figure figcaption {
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 24px;
    text-shadow: 1px 1px 1px  black;
    color: #ffffff;
    width: 99%;
    text-align: center;
}

.setas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.setas button {
    width: 3rem;
    height: 3rem;
    background: #D9D9D9;
    border-radius: 50%;
    border: transparent;
    cursor: pointer;
}

.setas button i{
    color: black;
}

.setas button:hover {
    background-color: #F0BC23;
}

@media (max-width: 1000px) {
    #carrosselGaleria {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .figure {
        min-width: 20rem;
    }

    .galeriaFotos #texto p {
        width: 90%;
    }
}

@media (max-width: 700px) {
    #carrosselGaleria {
        gap: 0rem;
    }

    .setas{
        margin-top: -2rem;
    }
}
