/* Neighborhood Section - Premium Redesign */

.regioes-container {
    padding: 2rem 0;
}

.search-box-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box-wrapper input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    border: 2px solid var(--border);
    border-radius: 100px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
}

.search-box-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

/* Minimalist Redesign for Neighborhoods */
.neighborhood-container-modern {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.neighborhood-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.neighborhood-chip {
    padding: 12px 20px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    font-size: 0.95rem;
    color: #475569;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.neighborhood-chip:hover {
    background: #294674;
    color: #ffffff;
    border-color: #294674;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(41, 70, 116, 0.2);
}

.neighborhood-chip i {
    font-size: 0.8rem;
    opacity: 0.5;
}

.neighborhood-chip:hover i {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .neighborhood-container-modern {
        padding: 1.5rem;
    }
    .neighborhood-grid-minimal {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
    }
    .neighborhood-chip {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}
