.cabecalho {
    background-image: url("../img/job2.jpg");
}



.carrossel {
    display: flex;
    align-items: center;
    border-top: 2px solid #5e87b6;
    border-bottom: 2px solid #5e87b6;
    mask: linear-gradient(to right, transparent, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 98%, transparent);
    margin: 30px 0px 50px 0px;
}

.carrossel-row {
    display: flex;
    flex-direction: column;
}

#galeria h3 {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    color: #333;
}

.marcelo{
    position: relative
}

.fotos {
    margin: 20px 0px 20px 0px;
    padding: 15px 25px 25px 25px;
    max-width: 90%;
    margin-inline-start: 3%;
    overflow: hidden;
    mask: linear-gradient(to right, transparent, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 98%, transparent);
    cursor: grab;
    text-align: center;
    display: flex;
}

.fotos-carrossel{
    display: flex;
    gap: 20px;
    
    width: 100%;
    height: 100%;

    overflow-x: scroll;
    padding: 20px 20px 0;
}



.fotos * {
    user-select: none;
}

.fotos a {
    -webkit-user-drag: none;
}

.linha-seta {
    width: 100%;
}

.setas-scroll {
    width: 30px;
    height: 30px;
    opacity: 0; 
    animation: anim-seta 2s cubic-bezier(0.46, 0.03, 0.52, 0.96) 10;
    transform: rotate(-90deg);
    position: absolute;
    right: -40px;
    top: 50%;
}

@keyframes anim-seta {
    0% {
        opacity: 1;
        transform: translateX(7vh)rotate(-90deg);
    }

    50% {
        opacity: 0;
        transform: translateX(0vh)rotate(-90deg); 
    }

    100% {
        opacity: 1;
        transform: translateX(7vh)rotate(-90deg); 
    }
}

.galeria-resultados {
    display: flex;
    gap: 60px;
}

.galeria-resultados-card {

    min-width: 220px;
    min-height: 310px;

    background-color: #fff;

    box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.25);

    cursor: pointer;
    margin: 0;
    padding: 10px;
}

.foto-criciuma {
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;

    background: #eaedef;
    
    object-fit: cover;
    -webkit-user-drag: none;
}

.descricao-foto {
    margin-top: 10px;
    min-height: 72px;
}
.descricao-foto p{
    color: #333;
    margin: 0;
}


.modal-body img {
    width: 100%;
    height: 100%;
}

.navMenu {
    width: 100%;
    margin: auto;
    margin-bottom: 40px;
}

.navFoto {
    width: 20%;
    margin: auto;
    margin-bottom: 40px;
}

@media (max-width: 820px) {
    .setas-scroll{
        display: none;
    }
}