/* -----------------------------------------------
   FUENTES PERSONALIZADAS DESDE /fonts/
------------------------------------------------- */
@font-face {
  font-family: 'Neue Plak Text Black Italic';
  src: url('/fonts/Neue Plak Text Black Italic.woff') format('woff');
  font-style: italic;
  font-weight: bold;
}

@font-face {
  font-family: 'Neue Plak Bold';
  src: url('/fonts/Neue Plak Bold.woff') format('woff');
  font-style: normal;
  font-weight: bold;
}

/* -----------------------------------------------
   RESET Y BASE
------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 110px;
  font-family: sans-serif;
}

/* -----------------------------------------------
   HEADER FIJO
------------------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 9999;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: #000;
}

.logo {
  height: 48px;
  max-width: 150px;
  transition: all 0.3s ease;
}

.menu-button {
  height: 56px;
  width: 56px;
  cursor: pointer;
}

/* -----------------------------------------------
   BANNER AMARILLO
------------------------------------------------- */
.header-banner {
  width: 100%;
  background: linear-gradient(to right, #fff200, #ffc800);
  text-align: center;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  text-transform: uppercase;
  color: #000;
  font-family: 'Neue Plak Text Black Italic', sans-serif;
  letter-spacing: 1px;
}

/* -----------------------------------------------
   MENÚ PANTALLA COMPLETA CON ANIMACIÓN
------------------------------------------------- */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-30%);
  }
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  color: #fff;
  display: none;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.3s ease;
}

.fullscreen-menu.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: slideDown 0.4s ease forwards;
}

.fullscreen-menu.closing {
  animation: slideUp 0.3s ease forwards;
}

.menu-inner {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 6vh;
}

/* Logo en el menú */
.menu-logo {
  position: absolute;
  top: 1rem; /* más cerca del borde superior */
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 2rem);
  padding-right: 3rem; /* espacio para la X */
}

.menu-logo .logo {
  height: 64px; /* puedes aumentar si deseas */
  max-height: 70px;
  width: auto;
}

/* Botón de cerrar */
.close-icon {
  font-size: 2.6rem; /* más grande */
  color: white;
  cursor: pointer;
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
}


.menu-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 4rem;
  color: #fff;
}

.user-icon {
  font-size: 2.8rem;
}

.user-info span {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1;
}

.user-info strong {
  font-family: 'Neue Plak Bold', sans-serif;
  font-size: 1.3rem;
  display: block;
}

.user-divider {
  width: 50%;
  height: 1px;
  background-color: #ffffff44;
  border-radius: 999px;
  margin: 0.5rem auto 2rem auto;
}

.fullscreen-menu ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.fullscreen-menu li {
  margin: 1.4rem 0;
  text-align: center;
}

.fullscreen-menu a {
  text-decoration: none;
  font-size: 1.8rem;
  color: #fff;
  font-family: 'Neue Plak Bold', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  transition: color 0.3s ease;
}

.fullscreen-menu a:hover {
  color: #ffd000;
}

.fullscreen-menu i {
  font-size: 1.6rem;
}

.menu-action-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.menu-btn-yellow,
.menu-btn-white {
  width: 100%;
  max-width: 340px;
  padding: 1.1rem 2rem;
  border-radius: 999px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.menu-btn-yellow {
  background-color: #ffd000;
}

.menu-btn-white {
  background-color: #fff;
}

.menu-btn-text {
  font-family: 'Neue Plak Bold', sans-serif;
  font-size: 1.3rem;
  color: #000;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

@media (max-width: 480px) {
  .logo {
    height: 56px;
    max-width: 160px;
  }

  .menu-button {
    height: 56px;
    width: 56px;
  }

  .header-banner {
    font-size: 1rem;
    padding: 0.6rem 0;
  }

  .fullscreen-menu a {
    font-size: 1.6rem;
  }

  .fullscreen-menu i {
    font-size: 1.4rem;
  }

  .header-top {
    padding: 0.6rem 0.8rem;
  }
}

/* ICONOS REDES SOCIALES */
.menu-social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.menu-social-icons a {
  color: white;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}
.menu-social-icons a:hover {
  color: #ffd000;
}