/* Estilos para formulários de busca */

/* Formulário de busca desktop */
.desktop-search-form {
    width: 100%;
}

.desktop-search-form .search-container {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-width: 100%;
}

.desktop-search-form .search-input {
    height: 40px;
    flex: 1;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
    width: 70%;
}

.desktop-search-form .search-button {
    height: 40px;
    padding: 0 15px;
    background-color: #ffff00; /* Amarelo */
    color: #008000; /* Verde */
    font-weight: bold;
    border: none;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
    width: 30%;
}

.desktop-search-form .search-button:hover {
    background-color: #e6e600; /* Amarelo mais escuro no hover */
}

/* Responsividade */
@media (max-width: 767px) {
    .desktop-search-form {
        display: none;
    }
}