body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #74ebd5, #ACB6E5);
  color: #333;
  overflow-x: hidden;
}

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ff9a9e, #fad0c4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 10;
  animation: fadeOut 3s ease-in-out forwards;
  animation-delay: 2s;
}

.intro h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.intro h2 {
  font-size: 1.8rem;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.hidden {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

header {
  background: linear-gradient(to right, #ff9a9e, #fad0c4);
  padding: 2rem;
  text-align: center;
  color: #fff;
}

header h1 {
  margin: 0;
  font-size: 2.8rem;
}

.integrantes {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

main {
  padding: 1rem;
}

section {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  margin: 1.5rem auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

section h2 {
  color: #444;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(to right, #ffecd2, #fcb69f);
  color: #555;
  font-size: 1rem;
}

.galeria {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.galeria img {
  max-width: 100%;
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}