/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ✅ evita flash blanco */
html,
body {
  width: 100%;
  height: 100%;
  background: #2b003d;
}

body {
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #2b003d; /* respaldo */
}

/* ✅ VIDEO FULLSCREEN COVER */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ esto llena toda la pantalla */
  z-index: 1;

  /* ✅ Fade-in para que no flashee */
  opacity: 0;
  animation: fadeInVideo 0.5s ease forwards;
}

@keyframes fadeInVideo {
  to {
    opacity: 1;
  }
}

/* OVERLAY */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* CONTENIDO CENTRADO */
.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 22px;
  transform: translateY(-10px);
}

/* LOGO */
.hero__logo {
  width: min(560px, 90vw);
  height: auto;
}

/* BOTÓN */
.hero__button {
  cursor: pointer;
}

.hero__button img {
  width: min(320px, 65vw);
  height: auto;
  transition: transform 0.2s ease;
}

.hero__button img:hover {
  transform: scale(1.05);
}

/* QUENTINO */
.hero__quentino {
  width: min(260px, 55vw);
  height: auto;
}

/* SEO content discreto */
.seo-content {
  position: absolute;
  bottom: 8px;
  left: 8px;
  max-width: 520px;
  font-size: 12px;
  line-height: 1.2;
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  color: #fff;
  z-index: 3;
}

.seo-content h1 {
  font-size: 14px;
  margin-bottom: 6px;
}

/* ✅ MOBILE: subimos bloque para ver tambores */
@media (max-width: 600px) {
  .hero__content {
    gap: 16px;
    transform: translateY(-50px);
  }

  .hero__logo {
    width: 90vw;
  }

  .hero__button img {
    width: 70vw;
  }

  .hero__quentino {
    width: 60vw;
  }
}
