* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#cursos {
   /*  font-family: Arial, sans-serif; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 95vh; */ /* 100vh */
    /* background-color: #f0f0f0; */
    
}

#cursos h1{
    font-size: 48px;
}

.carrossel-container {
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    position: relative;
}

.carrossel {
    display: flex;
    transition: transform 0.5s ease;
}

.item {
    width: 170px; /* 350px */
    height: 300px;
    margin: 0 10px; /* 0 5px; */
    flex-shrink: 0;
    border-radius: 20px;
    /* border: 3px solid #5F467B; */
    overflow: hidden;
    text-align: center;
    background-color: #0D0D0D;
    cursor: pointer;
}
.titulo {
    position: absolute; /* O título vai ficar posicionado em relação ao .imagem-container */
    top: 10px; /* Coloca o título no topo da imagem */
    margin: 0; /* Remove margens padrão */
    font-size: 16px; /* Ajuste o tamanho conforme necessário */
    font-weight: bold;
    /* text-shadow: 3px 3px 3px rgba(0, 0, 0, 1); */
    text-transform: capitalize; /* Capitaliza as primeiras letras de cada palavra */
    width: 10%;
    margin-left: 35px;
}
.item img {
    width: 170px;
    height: 100%;
    /* object-fit: cover; */
    border-radius: 20px;
    cursor: pointer;
    /* max-width: 100%;
    max-height: 100%;
    object-fit: contain; */
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


