/* Estilos para o botão de lupa e popup no mobile */
.search-icon {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    cursor: pointer;
    z-index: 999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#filter-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    margin: auto;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-content label {
    font-weight: 500;
    margin-bottom: 5px;
}

.popup-content select,
.popup-content input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.popup-content button[type="submit"] {
    background: var(--bs-primary);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

@media (max-width: 991px) {
    .search-icon {
        display: flex;
    }
}

.filter-grid .btn-primary {
    font-family: Helvetica World;
}

button {
    font-family: Helvetica World;
}

.btn-primary {
    background-color: #070f3c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: 2px solid white;
    font-family: 'Angella White', serif;
    font-size: 18px;
}