.search-container {
  max-width: 500px;
  margin: 40px auto;
  display: none;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  animation: fadeIn 0.8s ease-in-out forwards;
}

.search-container h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 22px;
}

.search-box {
  display: flex;
  width: 100%;
  gap: 10px;
}

.search-box input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input[type="text"]:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.search-box button {
  padding: 12px 20px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: #0056b3;
}

#resultado {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
