/* Busca */
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    padding: 0;
    margin: 0;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/busca-fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    color: white;
    text-align: center;
}

.search-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 600px; /* Limita a largura do conteúdo */
}

.search-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.search-options {
    display: flex;
    width: 100%;
}

.search-bar input {
    padding: 0 1rem;
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 25px 0 0 25px;
    background-color: rgba(255, 255, 255, 0.9);
    outline: none;
    box-sizing: border-box;
    font-size: 0.95rem;
}

.search-bar button {
    padding: 0 1.5rem;
    height: 48px;
    background-color: #481010;
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
