/* Contenedor centrado vertical y horizontal con degradado azul */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background: linear-gradient(135deg, #2596be 0%, #1c7ca1 100%);
  color: white;
  font-family: 'Arial', sans-serif;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

/* Animación suave al cargar */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Logo centrado y con sombra sutil */
.logo {
  width: 160px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: bounce 2s infinite;
}

/* Pequeña animación de “rebote” para el logo */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

h1 {
  font-size: 3rem;
  margin: 0;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 1.6rem;
  margin: 12px 0 35px 0;
  font-weight: 400;
  color: #e0f7ff; /* azul claro para destacar subtítulo */
}

/* Contacto */
.contact {
  background: rgba(0,0,0,0.15); /* caja semitransparente */
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.contact h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: #fffa; /* sutil dorado */
}

.contact p {
  margin: 6px 0;
  font-size: 1.15rem;
}

a {
  color: #ffdd57; /* dorado vivo para enlaces */
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: #ffd700;
}

/* Responsive para móvil */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }
  .subtitle {
    font-size: 1.3rem;
  }
  .contact h2 {
    font-size: 1.5rem;
  }
  .contact p {
    font-size: 1rem;
  }
  .logo {
    width: 120px;
  }
}
