/* ------------------ RESET ------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ------------------ BODY ------------------ */

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;

  /* permitir scroll en móvil */
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;

  /* sin flex para que no bloquee scroll */
  display: block;
}

/* ------------------ INTRO ANIMATION ------------------ */

#intro {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOut 1.2s ease 2.2s forwards;
  z-index: 10;
}

.intro-content {
  text-align: center;
  animation: introFade 1.6s ease;
}

.intro-logo {
  width: 160px;
  opacity: 0;
  animation: logoPop 1.4s ease forwards;
}

.intro-text {
  margin-top: 20px;
  font-size: 1rem;
  opacity: 0;
  letter-spacing: 2px;
  animation: textFade 1.6s ease 0.6s forwards;
}

@keyframes logoPop {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes textFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* ------------------ MAIN CONTENT ------------------ */

.container {
  text-align: center;
  width: 90%;
  max-width: 480px;

  /* margen natural para permitir scroll */
  margin: 20px auto 20px;

  opacity: 0;
  animation: reveal 1.5s ease 2.5s forwards;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.main-logo {
  width: 130px;
  margin-bottom: 22px;
}

.title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  animation: float 4s ease-in-out infinite;
}

.slogan {
  margin-bottom: 40px;
  font-size: 0.60rem;
  letter-spacing: 2px;
  color: #ccc;
}

/* ------------------ LINKS ------------------ */

.links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.link {
  font-size: 1.1rem;
  padding: 14px 0;
  text-decoration: none;
  color: white;
  border: 1px solid #333;
  border-radius: 6px;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
}

.link:hover {
  border-color: white;
  letter-spacing: 1px;
}

/* ------------------ SOCIAL ICONS ------------------ */

.social {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 20px;
}

.social-icon img {
  width: 26px;      /* tamaño uniforme */
  height: 26px;     /* fuerza proporción exacta */
  opacity: 0.7;
  transition: 0.3s ease;

  /* asegura que no se deformen */
  object-fit: contain;
  display: block;
}

.social-icon img:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* ------------------ FLOAT EFFECT ------------------ */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

