/* Fuente elegante */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #d4145a, #223248);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Contenedor principal */
.contenedor {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  max-width: 600px;
  width: 90%;
  animation: fadeIn 1.2s ease-in-out;
}

/* Animación de entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Títulos */
h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Contador */
.contador {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contador div {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 12px;
  min-width: 70px;
}

.contador span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.contador small {
  font-size: 0.9rem;
  color: #ddd;
}

/* Formulario */
.suscripcion {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.suscripcion input {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  flex: 1;
  min-width: 200px;
}

.suscripcion button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #d4145a;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.suscripcion button:hover {
  background: #d4145a;
  color: #fff;
}
