﻿#capa {
    background-image: linear-gradient(to right, black 40%, transparent), url(/assets/img/curtaenem/curta_enem_2024_banner.png);
    background-size: cover;
    height: 650px;
    background-position: top;
    top: 50px;
    width: 100%;
}

.img-banner-desktop {
    margin-top: 25%;
}

.img-banner-play-desktop {
    margin-top: 35%;
}

.formacao-card {
    display: flex;
    justify-content: center;
}


.formacao-card-item img {
    width: 100%;
    max-width: 350px
}

.formacao-card-item a {
    display: block;
}

.formacao-card-item {
    pointer-events: auto;
}

.titulo-sublinhado {
    font-size: 24px;
    text-decoration: underline;
    color: #fff;
    text-decoration-color: #a5cf34;
    text-underline-offset: 10px;
}

.titulo-sublinhado-sub {
    font-size: 12px;
    color: #fff;
    margin-top: 10px
}

.depoimentos-card {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.depoimentos-card-item {
    max-width: 350px;
    border-radius: 20px;
    background-color: #303440;
    padding: 20px;
    color: #fff;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.depoimentos-card-item-titulo {
    margin-top: 18px;
    font-size: 18px;
    font-weight: bold;
}

.depoimentos-card-item-subtitulo {
    font-size: 14px;
    font-weight: 500;
}

.gold {
    color: #ffd42f;
}

.relato-principal img {
    margin-top: 40px;
    max-width: 550px;
}

.relato-card {
    display: flex;
    justify-content: center;
}

.relato-card-item img {
    max-width: 200px;
}

@media (max-width: 481px) {
    #capa {
        background-image: linear-gradient(to bottom, black 8%, transparent), url(/assets/img/curtaenem/curta_enem_2024_banner.png);
        background-size: cover;
        height: 650px;
        background-position: 65% top;
        top: 50px;
        width: 100%;
    }

    .filmes-que-ensinam img {
        width: 100%;
    }

    .img-banner-desktop img {
        max-width: 340px
    }

    .relato-card,
    .depoimentos-card,
    .formacao-card {
        flex-direction: column;
    }

    .relato-principal img,
    .relato-card-item img {
        width: 100%;
    }
}

.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Ajuste conforme necessário */
    width: 100%;
}

.carousel {
    width: 90%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 10px;
    animation: scroll 20s linear infinite; 
}

    .carousel-track img {
        width: 200px; /* Largura de cada imagem */
        height: 120px;
        object-fit: cover;
        border-radius: 10px;
    }

/* PAUSAR ANIMAÇÃO AO PASSAR O MOUSE */
/*.carousel:hover .carousel-track {
    animation-play-state: paused;
}*/

/* Ajustando a animação para percorrer todas as imagens */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%); /* Isso move o carrossel para a esquerda até o final */
    }
}