* {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

body {
  font-size: 25px;
  background: #ffe6f0; /* fondo rosa claro */
}

#Encabezado {
  background: #ffb6c1; /* rosa pastel */
  color: #4b003a; /* texto oscuro para contraste */
  text-align: center;
  padding: 20px 0;
}

#Section {
  background: linear-gradient(120deg, #ff69b4, #ffb6c1);
  background-size: 200% 200%;
  text-align: center;
  padding: 20px;
  animation: BgGradient 6s ease infinite;
  color: #4b003a;
}

@keyframes BgGradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.hijo {
  background-color: #ffcce0; /* rosa claro */
  padding: 10px;
  margin: 18.5px;
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 0 10px #ffa6c9;
}

.hijo p {
  font-size: 16px;
  color: #4b003a;
  margin: 10px 0;
}

h1 {
  color: #c71585; /* rosa fuerte */
  font-size: 32px;
}

label {
  font-size: 18px;
  color: #4b003a;
}

input[type="text"] {
  padding: 8px;
  width: 80%;
  margin-top: 10px;
  border: 2px solid #ff69b4;
  border-radius: 6px;
  background-color: #fff0f5;
  color: #4b003a;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-family: Arial, sans-serif;
  border: 2px solid #ff69b4;
  color: white;
  background-color: #ff69b4;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #ff1493;
  transform: scale(1.05);
}

.footer {
  background-color: #ff99cc;
  color: #4b003a;
  width: 100%;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}
