body {
  background: url('../../img/template/wmb.jpeg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.overlay {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(240, 240, 240, 0.7));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.search-box {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  margin: auto;
}
#results-container {
  /*margin-top: 20px;*/
  max-width: 600px;
  /*width: 90%;*/
  background: #fdfdfd;
  /*padding: 25px;*/
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.btn-search {
  background-color: #dc3545;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 4px 25px;
  transition: all 0.3s ease;
  font-size: large;
}
.btn-search:hover {
  background-color: #f8f520;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.social-icons a {
  color: #ff0000;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #fffb20;
}
footer {
  text-align: center;
  margin-top: 10px;
  padding: 5px;
}


.logo-img {
  max-width: 350px;   /* Ajusta el ancho máximo */
  height: auto;       /* Mantiene proporción */
  /*margin-bottom: 20px;*/
}
/* Animación fade-in + zoom  para la imágen*/
.animated-logo {
  opacity: 0;
  transform: scale(0.8);
  animation: fadeZoomIn 1.5s ease forwards;
}

@keyframes fadeZoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

#footer{
  color: crimson;
  font-size: 1rem;
}

/* Codigo para el cuadro de resultado */
/*#resultadoCliente .card {
  transition: all 0.4s ease-in-out;
}
#resultadoCliente .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
*/


#divNewSerch {
  transition: transform 0.2s ease-in-out;
}
#divNewSerch:hover {
  transform: scale(1.05);
}
