/* --- FUENTES GLOBALES --- */
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@300;400;700&family=Poppins:wght@300;400;600&display=swap');

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #0a0a0a;
    background-image: url('../../assets/header/fondo-panal.png'); /* Verifica esta ruta */
    background-attachment: fixed;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding-top: 80px; /* Evita que el contenido choque con el header */
}

/* --- HEADER & NAV --- */
.navbar-fixed {
    position: fixed; top: 0; left: 0; width: 100%; height: 80px;
    background: #000; display: flex; justify-content: center;
    align-items: center; z-index: 1000; 
    border-bottom: 1px solid rgba(129, 71, 255, 0.2);
}

.nav-container {
    width: 90%; max-width: 1200px;
    display: flex; justify-content: space-between; align-items: center;
}

/* BOTÓN VOLVER */
.back-btn {
    padding: 10px 25px; background: rgba(0,0,0,0.5);
    border: 1px solid rgba(129, 71, 255, 0.5); color: #fff;
    border-radius: 5px; text-decoration: none; font-weight: 700;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #8147ff;
    box-shadow: 0 0 15px #8147ff, 0 0 30px rgba(129, 71, 255, 0.6);
    transform: translateY(-3px);
}

/* MENÚ HAMBURGUESA */
.menu-hamburguesa {
    width: 35px; height: 25px; display: flex;
    flex-direction: column; justify-content: space-between;
    cursor: pointer; z-index: 1001;
}

.menu-hamburguesa span {
    width: 100%; height: 4px; background: #8147ff;
    box-shadow: 0 0 10px rgba(129, 71, 255, 0.8);
    border-radius: 2px; transition: 0.3s;
}

/* LISTA DESPLEGABLE */
.nav-menu {
    position: fixed; top: 80px; right: -100%;
    width: 280px; height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px); border-left: 2px solid #8147ff;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-menu.active { right: 0; }

.nav-menu ul {
    list-style: none; padding: 40px 30px;
    display: flex; flex-direction: column; gap: 20px;
}

.nav-menu ul li a {
    color: #fff; text-decoration: none; font-size: 1.1rem;
    letter-spacing: 2px; text-transform: uppercase; transition: 0.3s;
}

.nav-menu ul li a:hover { color: #8147ff; padding-left: 10px; }

/* WHATSAPP NAV */
.nav-whatsapp {
    color: #4dff4d !important; border: 1px solid #4dff4d;
    padding: 10px !important; border-radius: 5px; text-align: center;
}

.nav-whatsapp:hover {
    background: #4dff4d; color: #000 !important;
    box-shadow: 0 0 20px rgba(77, 255, 77, 0.6);
}

/* ANIMACIÓN HAMBURGUESA */
.menu-hamburguesa.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-hamburguesa.open span:nth-child(2) { opacity: 0; }
.menu-hamburguesa.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.white-subtitle a {
    color: #fff; text-decoration: none; font-size: 1.1rem;
    letter-spacing: 2px; text-transform: uppercase; transition: 0.3s;
}

/* --- FOOTER --- */
.main-footer {
    background: #111; padding: 40px 0; color: #aaa;
    border-top: 2px solid #222; text-align: center;
}

.footer-socials { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }

.social-icon {
    width: 45px; height: 45px; background: #333;
    border-radius: 50%; display: flex; justify-content: center;
    align-items: center; color: #fff; text-decoration: none;
    border-top: 2px solid #555; border-bottom: 2px solid #000;
    transition: 0.3s; font-size: 12px; font-weight: bold;
}

.social-icon:hover { transform: translateY(-3px); color: #ffaa00; background: #444; }