/* 🟢 Estilos generales del Navbar */
.navbar {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
}

/* 🔹 Contenedor del logo y el nombre */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 🔹 Ajuste del logo */
.logo {
  height: 70px;
  transition: height 0.3s ease;
}

/* 🔹 Ajuste del nombre */
.brand-name {
  font-size: 28px;
  font-weight: bold;
  color: black;
  margin: 0;
  white-space: nowrap;
}

/* 🔹 Estilos de los enlaces y botones */
.nav-link,
.nav-button {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}

/* 🎨 Efecto hover */
.nav-link:hover,
.nav-button:hover {
  color: white;
  background-color: #5257fb;
  border-radius: 5px;
  text-decoration: none;
}

/* Botón hamburguesa personalizado */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  background-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* Estilos para el buscador móvil */
.buscador-container-mobile {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  margin-bottom: 10px;
}

#mobile-search-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media queries para responsividad */
@media (max-width: 992px) {
  .navbar-brand {
    margin-right: auto;
  }
  
  .logo {
    height: 60px;
  }
  
  .brand-name {
    font-size: 24px;
  }
  
  .nav-button {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .logo {
    height: 50px;
  }
  
  .brand-name {
    font-size: 20px;
  }
}

.remodelaciones-input {
  flex: 1;
  min-width: 180px;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.remodelaciones-select {
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.remodelaciones-btn {
  padding: 10px 24px;
  border-radius: 20px;
  background: #5257fb;
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.2s;
}

