.carrossel {
    position: relative;
    width: 86%;
    overflow: hidden;
}

.carrossel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carrossel-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}

.carrossel-item img {
    width: 300px;
}

.carrossel-item h1 {
    font-weight: 400;
    font-size: 27px;
    margin-bottom: 6px;
}

.carrossel-item p {
    color: #878787;
}

.carrossel-control-prev,
.carrossel-control-next {
    color: #636363;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 70px;
    height: 49px;
}

.carrossel-indicators {
    position: relative;
    bottom: 0px;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.indicador {
    width: 13px;
    height: 13px;
    background-color: #9f9f9f;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.indicador.ativado {
    background-color: #f3803f;
}