.footer {
  background-color: #4cae8a; /* verde planta claro */
  color: #ffffff;
  padding: 50px 0;
  font-family: 'Segoe UI', sans-serif;
}

.footer h5 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;
}

.footer p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffe082;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  font-size: 1.4rem;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffe082;
}

.servicios-lista {
  list-style: none;
  padding: 0;
}

.servicios-lista li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #f0f0f0;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid #ffffff55;
  margin-bottom: 15px;
}

.col-lg-6 {
  background: transparent !important;
}


/* Ícono de búsqueda */
.search-toggle {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #4caf50;
  margin-left: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.search-toggle:hover {
  transform: scale(1.1);
}

/* Campo de búsqueda oculto por defecto */
#searchForm {
  display: none;
  margin-left: 20px;
}

#searchForm.active {
  display: flex;
}

/* Responsive: ícono fuera del menú en móvil */
@media (max-width: 991.98px) {
  .search-toggle.d-lg-none {
    position: absolute;
    right: 60px;
    top: 18px;
    z-index: 1050;
  }

  #searchForm {
    position: absolute;
    top: 60px;
    right: 10px;
    width: calc(100% - 20px);
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
}