/* Estilos base para video de fondo a pantalla completa */

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  background: #000;
}

#bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

#overlay {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.top-links {
  position: fixed;
  top: 16px;
  right: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: auto;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: transparent;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle .bar {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(0, 0, 0, 0.65);
}

.menu-panel {
  min-width: 240px;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.45);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel.is-open {
  display: flex;
}

.top-links a {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.top-links a:hover { text-decoration: underline; }

.headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-6vh);
}

.headline + .store-badges {
  margin-top: 20px;
}

.brand {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(28px, 8vw, 96px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.subtitle {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400; /* Regular */
  font-size: 1rem; /* tamaño de párrafo */
  color: #ffffff;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  max-width: min(92vw, 960px);
}

.store-badges {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: auto;
}

.store-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.availability {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400; /* Regular */
  font-size: 0.75rem; /* un poco más grande */
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 12px;
  pointer-events: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.store-badge { /* legacy, no-op */ }

.store-rect {
  display: inline-flex;
  width: 200px;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
}

.store-rect .icon {
  width: 22px;
  height: 22px;
}

.store-rect .label {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 480px) {
  .headline { transform: translateY(-4vh); }
  .store-rect {
    width: 160px;
    height: 44px;
    gap: 8px;
    border-radius: 12px;
    padding: 6px 12px;
  }
  .store-rect .icon { width: 18px; height: 18px; }
  .store-rect .label { font-size: 14px; }
}

.store-badge img { display: none; }

