
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Fondo general */
body {
  background-color: rgb(45,6,45); /* azul oscuro tipo Welivery */
  font-family: 'Poppins', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}


.tituliverval{
  color: white;
  font-size: 3.4em;
  font-weight: 650;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Contenedor principal */
.buscador-container {
  background: #e9e9e9;
  padding: 40px 30px;
  border-radius: 20px;
  width: 350px;
  text-align: center;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

/* Título */
.buscador-container h2 {
  color: #2e4372;
  margin-bottom: 20px;
  font-size: 26px;
}

/* Input */
.buscador-container input {
  width: 100%;
  padding: 12px;
  border: 2px solid #2e4372;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
  outline: none;
}

/* Botón */
.buscador-container button {
  width: 100%;
  padding: 14px;
  background-color: #2e4372; 
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

/* Hover botón */
.buscador-container button:hover {
  background-color: rgb(18, 139, 148);
}


/* Texto inferior */
.footer-text {
  display: flex;
  padding-top: 30px;
  text-align: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 480px) {
  .buscador-container {
    width: 90%;
    padding: 30px 20px;
  }
}