.search-container {
    display: flex;
    align-items: center;
    border: 2px solid #ffb366; /* Cor similar à imagem fornecida */
    border-radius: 50px;
    overflow: hidden;
    background-color: #ffffff;
}

.search-input {
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    outline: none;
    flex: 1;
}

.search-button {
    background-color: #ffb366; /* Cor do botão conforme imagem */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

.search-button:hover {
    background-color: #e69a57; /* Tom levemente mais escuro para hover */
}

.search-button:active {
    background-color: #cc854a; /* Tom ainda mais escuro ao clicar */
}

.banner-container {
    position: relative;
    width: 100%;
    max-width: 1340px;
    overflow: hidden;
    /* height: 400px; */
}

.banner-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.banner-slide img {
    width: 100%;
    /* height: 400px; */
    object-fit: cover;
    flex-shrink: 0;
}

.prev, .next {
    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: 18px;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media screen and (max-width: 768px) {
    .banner-slide img {
        height: 200px; /* Para ajustar melhor em telas menores */
    }
}