/* Importar fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@600&display=swap');
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

/* Animación del gradiente */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.modern-title {
  font-family: 'Montserrat', 'Poppins', 'Space Grotesk', sans-serif;
  font-size: 1.0rem;        /* más pequeño que 1rem */
  letter-spacing: 0.12em;   /* ajustado para que no se vea tan separado */
  color: #ffffff;           /* blanco sólido */
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 6px rgba(32, 205, 218, 0.5); /* sombra más sutil */
}

@media (min-width: 768px) {
  .modern-title {
    font-size: 1.5rem; /* más grande en pantallas grandes */
  }
}

/* Fondo animado */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.animate-gradient {
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
}

/* Quitamos brillo raro del título */
#logoTitle h2 {
  color: #fff; /* Blanco sólido */
}
