/* HEADER / ENCABEZADO */
#encabezado {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: linear-gradient(
        to bottom,
        #000000 0%,
        #0a0a0a 40%,
        #141414 70%,
        #1f1f1f 100%
    );

    height: 150px;
    display: flex;
    align-items: center;
}


#encabezado nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

#encabezado .logo img {
    height: 45px;
    width: auto;
}

#encabezado ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

#encabezado ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px; 
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

#encabezado ul li a:hover { opacity: 0.7; }
#encabezado ul li a.active { font-weight: 700; }