/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('assets/noise.png') repeat;
  opacity: 100;
  pointer-events: none;
  z-index: 0;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  color: #fff;
  background: #000; /* solo esto */
}



/* ================= CONTAINER ================= */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: fadeIn 1.5s ease forwards;
}

/* ================= TITULO ================= */
.title {
  font-size: 5rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #fff;

  /* Efecto lujoso y oscuro: brillo sutil y sombra elegante */
  text-shadow:
    0 0 5px #fff,
    0 0 10px rgba(255,255,255,0.6),
    0 0 20px rgba(255,255,255,0.4),
    0 0 30px rgba(0,0,0,0.8),
    0 4px 8px rgba(0,0,0,0.6);

  transition: all 0.3s ease;
}

.title:hover {
  text-shadow:
    0 0 10px #fff,
    0 0 20px rgba(255,255,255,0.8),
    0 0 40px rgba(255,255,255,0.6),
    0 4px 12px rgba(0,0,0,0.8);
  transform: scale(1.05);
}

/* ================= SUBTITULO ================= */
.subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #ccc;
}
.micro {
  margin-top: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #666;
  text-align: center;
}


/* ================= DIVIDER ================= */
.divider {
  width: 80px;
  height: 2px;
  background: #fff;
  margin: 2rem auto;
  opacity: 0.5;
}

/* ================= BOTON ================= */
.btn-enter {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn-enter::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: skewX(-20deg);
  transition: all 0.4s ease;
  z-index: 0;
}

.btn-enter:hover::before {
  left: 0;
}

.btn-enter span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: color 0.4s ease;
}

.btn-enter:hover span {
  color: #000;
}

/* ================= FOOTER ================= */
footer {
  position: fixed;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: #555;
  letter-spacing: 0.1em;
  z-index: 1;
}

/* ================= ANIMACIONES ================= */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .title { font-size: 3rem; }
  .btn-enter { padding: 12px 32px; }
}
