:root{
  --bg1: #b81b62; /* morado fuerte */
  --bg2: #b33e76; /* degradado */
  --accent: #00d1c7; /* turquesa */
  --glass: rgba(255,255,255,0.06);
  --glass-2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.95);
  --muted: rgba(255,255,255,0.9);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial;
  color:var(--text);
  background: linear-gradient(180deg,var(--bg1) 0%, var(--bg2) 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}

/* Contenedor principal centrado */
.page{
  width:100%;
  max-width:1100px;
  text-align:center;
  position:relative;
}

/* badge pequeño */
.badge{
  display:inline-block;
  background:rgba(0,0,0,0.12);
  color: #fff;
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:18px;
  backdrop-filter: blur(4px);
}

/* Hero */
.hero h1{
  margin:6px 0 4px;
  font-family: "Montserrat", "Helvetica Neue", Arial;
  font-weight:800;
  letter-spacing: -0.02em;
  color:var(--text);
  font-size:34px;
  line-height:1.05;
  text-transform: none;
}

.hero h1 .muted{
  font-weight:600;
  color:rgba(255,255,255,0.9);
  font-size:30px;
}

.hero h1 .big{
  color: #fff;
  font-size:50px;
  margin:0 6px;
}

.highlight {
  background: rgba(255, 255, 255, 0.13); /* transparente elegante */
  padding: 4px 10px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}


.hero h2{
  margin:0;
  margin-bottom:28px;
  font-weight:700;
  color:var(--muted);
  font-size:26px;
}

.hero .accent{
  color:var(--accent);
  text-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Tarjeta central tipo glass */
.card{
  margin: 18px auto 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius:18px;
  padding:40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  max-width:920px;
  text-align:center;
}

/* Lead */
.lead{
  color: rgba(255,255,255,0.9);
  margin:0 0 14px;
  font-size:15px;
}

/* Pills (features) */
.features{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:10px 0 18px;
}

.pill{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  border:1px dashed rgba(255,255,255,0.06);
  font-size:13px;
  background: rgba(255,255,255,0.015);
  color: rgba(255,255,255,0.95);
}

/* Buttons */
.actions{
  display:flex;
  gap:14px;
  justify-content:center;
  margin:18px 0;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  font-family: "Montserrat", sans-serif;
  letter-spacing:0.01em;
  transition: transform .14s ease, box-shadow .14s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.btn:active{ transform: translateY(1px) }

.btn-primary{
  background: linear-gradient(180deg,var(--accent), #00b3a8);
  color: #002b2a;
  border: 2px solid rgba(0,0,0,0.08);
  padding-left:22px;
  padding-right:22px;
}

.btn-secondary{
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Marquee simple */
.marquee{
  margin:20px 0 12px;
  overflow:hidden;
  border-radius:10px;
  background: rgba(0,0,0,0.04);
  padding:8px 10px;
  color: rgba(255,255,255,0.9);
  font-size:14px;
}

.marquee-inner{
  display:inline-block;
  white-space:nowrap;
  animation: scroll 12s linear infinite;
}

@keyframes scroll{
  0%{ transform: translateX(100%) }
  100%{ transform: translateX(-10%) }
}

/* redirect text */
.redirect{
  color: rgba(255,255,255,0.75);
  font-size:13px;
  margin-top:6px;
}

/* Footer */
.foot{
  margin-top:100px;
  font-size:16px;
  color: rgba(255,255,255,0.65);
}

/* Responsive adjustments */
@media (max-width:720px){
  .hero h1 .big{ font-size:28px }
  .hero h1 .muted{ display:block; margin-bottom:6px }
  .card{ padding:18px; border-radius:14px }
  .btn{ padding:10px 14px; font-size:14px }
  .marquee-inner{ animation-duration:20s }
}

/* --- NIEVE FLOTANDO --- */
.snow {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1; /* detrás del contenido */
}
.holiday{
  font-size: 20px;
}
.snow span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.85;
  animation: fall linear infinite;
}

/* Animación de caída */
@keyframes fall {
  0% {
    transform: translateY(-10vh) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(20px);
    opacity: 0.4;
  }
}

/* Nieve acumulada al fondo */
.snow-accumulated {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
  background: rgba(255, 255, 255, 0.85);

  /* forma ondulada (despareja) */
  clip-path: polygon(
    0% 100%,
    0% 60%,
    15% 70%,
    30% 55%,
    45% 65%,
    60% 50%,
    75% 68%,
    88% 52%,
    100% 60%,
    100% 100%
  );

  transition: height 1s ease-out;
}
