/* ==========================================================
   HEADER
========================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(11, 7, 16, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================
   LOGO
========================================================== */

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

/* ==========================================================
   NAVEGACIÓN
========================================================== */

nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #c98cff;
}

/* ==========================================================
   MENÚ HAMBURGUESA
========================================================== */

.menu-toggle {
    display: none;
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(201, 140, 255, 0.35);
    border-radius: 10px;
    background: rgba(155, 77, 202, 0.08);
    cursor: pointer;
    z-index: 1100;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   MENÚ MÓVIL
========================================================== */

.mobile-nav {
    display: flex;
}