/* Fuente moderna y colores pastel vibrantes */
body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #f1d2e8, #aeeeee);
  color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  animation: fadeIn 1.5s ease;
}

.logo {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  color: #3c2a5d;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 30px;
}

.info-box {
  background: #daf5f5;
  padding: 20px;
  border-radius: 12px;
  font-size: 1em;
  line-height: 1.6;
  color: #2a2a2a;
  margin-bottom: 20px;
}

footer {
  font-size: 0.9em;
  color: #999;
}

/* Animación suave */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    margin: 20px;
    padding: 20px;
  }

  .logo {
    width: 200px;
  }

  h1 {
    font-size: 1.6em;
  }
}

