@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Fondo animado pastel líquido */
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #ffdee9, #b5fffc, #e2f0cb, #fbc2eb, #a6c1ee);
  background-size: 600% 600%;
  animation: moveBg 12s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes moveBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Contenedor de texto */
.content {
  text-align: center;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
  animation: fadeIn 1.5s ease forwards;
  transform: translateY(20px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Título principal */
.titulo {
  font-size: 2.3rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 0 1px 5px rgba(255,255,255,0.8);
}

/* Botón guapo */
.boton {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 30px;
  background: linear-gradient(90deg, #a1c4fd, #c2e9fb);
  color: #333;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.boton:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #c2e9fb, #a1c4fd);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Adaptado a móvil */
@media (max-width: 600px) {
  .titulo {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .content {
    padding: 45px 25px;
  }
  .boton {
    padding: 12px 32px;
    font-size: 1rem;
  }
}
