body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(270deg, aqua, #FFD580, aqua);
  background-size: 600% 600%;
  animation: moverFondo 20s ease infinite;
  color: #222;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* Animación del degradado */
@keyframes moverFondo {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

header .logo {
  width: 120px; /* imagen más pequeña */
  height: auto;
  border-radius: 20%;
  margin: 20px 0;
}

h1 {
  font-size: 3em;
  margin: 10px 0;
}

.tagline {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

section {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

section h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

section p {
  font-size: 1.3em;
  line-height: 1.6em;
}

footer {
  margin-top: 40px;
  font-size: 1.2em;
}

footer a {
  color: #222;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}