* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.carrossel-container {
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: 0.5s ease all;
    width: 400%; /* Para 4 imagens, multiplica por 100 */
}

.slides img {
    width: 100%;
    height: 400px; /* Altura do carrossel */
    object-fit: cover;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    font-size: 18px;
}

.pagination {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.pagination span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.pagination .active {
    background-color: #fff;
}