
.banner-container {
    position: relative;
    width: 100%;
	height: 100%;
    /*max-width: 600px;*/
    margin: auto;
    overflow: hidden;
}

.banner-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    min-width: 100%;
	height: 100%;
    box-sizing: border-box;
    text-align: center;
    /*line-height: 40px; /* Ajuste a altura conforme necessário aumentando de 10 em 10px */
	 /* max-height: 420px;*/
    background-color: #f0f0f0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 1;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}