.portfolio__bg {
    background-image: url("/images/fundo-tela-portfolio.jpg");
    background-attachment: fixed;
    height: 500px;
    position: relative;
    margin-bottom: 6rem;
}

.portfolio__texto {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem 0 1rem;
    text-align: center;
}

.portfolio__texto h2 {
    color: white;
    font-weight: 600;
    font-size: 2.5rem;
    text-shadow: 3px 3px 8px #000000;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.portfiolio__carrossel__container {
    white-space: nowrap;
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 1rem;
    position: relative;
}

.portfiolio__carrossel {
    display: inline-block;
    animation: 45s slide infinite linear;
}

.portfiolio__carrossel img {
    height: 400px;
    margin: 0 .3rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


@media screen and (min-width:796px) {
    .portfiolio__carrossel__container:hover .portfiolio__carrossel {
        animation-play-state: paused;
    }
}