@charset "UTF-8";
/* ============================================================ 
PROYECTO: Front SCSS 
ARCHIVO: front.scss
MÓDULO: Front.scss
VERSIÓN: 2.1 – Logo y menú horizontal móvil
DIRECTORIO: /assets/

INFORMACIÓN: No borrar estos comentarios ⚠️

Este archivo SOLO contiene estilos visuales:
- Colores
- Bordes
- Sombras
- Glow
- Tipografías
- Animaciones
- Hover
- Estética general

⚠️ NO incluir aquí:
- position
- width / height estructural
- margins de layout
- flex/grid principales
============================================================ */
/* ================= BODY ================= */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #121212;
  color: #fff;
}

/* ================= WRAPPER ================= */
.morenox-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ================= HEADER ================= */
.mor-header {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  flex-shrink: 0;
  background: rgba(20, 20, 20, 0.45);
  backdrop-filter: blur(35px) saturate(140%);
  -webkit-backdrop-filter: blur(35px) saturate(140%);
  border-bottom: 1px solid rgba(255, 152, 0, 0.6);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1000;
}

.mor-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ================= LOGO ================= */
.mor-logo {
  width: 250px;
  height: 70px;
  background-image: url("/assets/img/m.png"), url("/assets/img/mor.webp");
  background-repeat: no-repeat, no-repeat;
  background-size: 120px auto, 170px auto;
  background-position: -10px center, 90px center;
  filter: drop-shadow(0 0 4px rgba(255, 140, 0, 0.7)) drop-shadow(0 0 8px rgba(255, 120, 0, 0.5)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  transition: all 0.25s ease;
}

.mor-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px rgba(255, 160, 0, 0.9)) drop-shadow(0 0 12px rgba(255, 120, 0, 0.7)) drop-shadow(0 0 20px rgba(255, 80, 0, 0.6));
}

/* ================= MAIN ================= */
.mor-body {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 40px 0;
  width: 100%;
}

/* ================= CONTENEDORES ================= */
.mor-container-main {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 16px;
  border: 1px solid rgba(255, 152, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 20px 25px;
  color: #fff;
  transition: all 0.3s ease;
}

.mor-container-inner {
  width: calc(100% - 220px);
  max-width: 1100px;
  margin: 20px auto;
  background: rgba(25, 25, 25, 0.45);
  backdrop-filter: blur(35px) saturate(140%);
  -webkit-backdrop-filter: blur(35px) saturate(140%);
  border-radius: 16px;
  border: 1px solid rgba(255, 152, 0, 0.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ================= FOOTER ================= */
.mor-footer {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  flex-shrink: 0;
  background: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(35px) saturate(140%);
  -webkit-backdrop-filter: blur(35px) saturate(140%);
  border-top: 1px solid rgba(255, 152, 0, 0.6);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mor-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 25px;
  text-align: center;
  color: #ff9800;
  font-weight: bold;
}

/* ================= MENU ================= */
.mor-menu-wrapper {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  position: relative;
  z-index: 1000;
}

.mor-menu {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.mor-menu li {
  position: relative;
}

.mor-menu li a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 8px 14px;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.mor-menu li:hover > a {
  color: #ff9800;
  background: rgba(255, 152, 0, 0.15);
}

.mor-menu li a.active {
  color: #ff9800;
  background: rgba(255, 152, 0, 0.25);
}

.mor-menu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(30, 30, 30, 0.9);
  border-radius: 6px;
  display: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 0;
}

.mor-menu li:hover > ul {
  display: block;
}

.mor-menu li ul li a {
  padding: 6px 12px;
  color: #fff;
  font-weight: normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.mor-menu li ul li a:hover {
  background: linear-gradient(45deg, #ff9800, #ffc107);
  color: #121212;
}

/* ================= HAMBURGER ================= */
.mor-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  z-index: 2000;
}

.mor-hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #ff9800;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mor-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.mor-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.mor-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* ================= MODALES ================= */
/* Login modal diseño visual solo estética, estructura en responsive */
/* ================= MODAL ================= */
/* ================= LOGIN MODAL DISEÑO ================= */
#loginModal .modal-content {
  width: 450px;
  max-width: 90%;
  padding: 30px;
  border-radius: 16px;
  background: #1a1a1a;
  border: 2px solid #ff9800; /* Borde naranja guapo */
  box-shadow: 0 0 25px rgba(255, 152, 0, 0.5), 0 0 40px rgba(0, 242, 255, 0.2), 0 20px 35px rgba(0, 0, 0, 0.7);
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.4s ease-out;
}

#loginModal h2 {
  color: #00f2ff;
  margin-bottom: 25px;
  font-size: 1.8em;
  text-shadow: 0 0 10px #00f2ff;
}

#loginModal input {
  width: 100%;
  padding: 14px;
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #121212;
  color: #fff;
  transition: all 0.25s ease;
}

#loginModal input:focus {
  border-color: #ff9800;
  box-shadow: 0 0 8px #ff9800;
  outline: none;
}

#loginModal button {
  margin-top: 22px;
  padding: 15px;
  width: 100%;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #ff9800, #ffc107);
  color: #121212;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#loginModal button:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

#loginModal .error-message {
  color: #ff5722;
  margin-top: 0.5rem;
  font-size: 0.95em;
}

/* ================= MODAL ANIM ================= */
@keyframes modalFadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ============================================================
   SCROLLBAR NEON MORENOX V2
============================================================ */
/* Chrome / Edge / Brave */
::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #0e0e0e;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.9), inset 0 0 12px rgba(255, 140, 0, 0.15);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff9800, #ffc107, #ff9800);
  border-radius: 10px;
  border: 2px solid #0e0e0e;
  box-shadow: 0 0 6px #ff9800, 0 0 12px rgba(255, 152, 0, 0.9), 0 0 20px rgba(255, 120, 0, 0.6), inset 0 0 4px rgba(255, 255, 255, 0.25);
  animation: morenoxScrollGlow 2.5s ease-in-out infinite alternate;
}

::-webkit-scrollbar-thumb:hover {
  box-shadow: 0 0 12px #ff9800, 0 0 25px #ffc107, 0 0 40px rgba(255, 180, 0, 0.9);
  filter: brightness(1.2);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff9800 #0e0e0e;
}

/*# sourceMappingURL=front.css.map */
