/*DATOS GENERALES CABECERA, POSICIÓN FIXED EN PANTALLA */
header {
    font-family: var(--font-f-letrabase);
    font-size: var(--font-s-atajos);
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    /* backdrop-filter: blur(10px); */
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding: 2.25rem 11rem;
    z-index: 999;
}


/* VALORES PARA LOS ATAJOS ENLAZADOS, QUITAR SUBRAYADO */
header a {
    color: var(--col-font-background);
    text-decoration: none;
}

header a:hover {
    color: #a88dda;
    transition: 0.4s ease-in-out;
}

/* TAMAÑO DEL LOGO */
header img {
    height: 65px;
    position: relative;
    z-index: 10000; /* Asegura que el logo esté por encima del menú */
}

/* DENTRO DE LA CABECERA DISTANCIAR LOS DOS BLOQUES Y DIV CENTRARLOS */
.elementos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 0.5em; */
}

/* ATAJOS EN HORIZONTAL Y CON SEPARACIÓN ENTRE ELLOS */
header ul li {
    display: inline-block;
    padding-left: 1em;
}

/* AL ESTAR EN ORDENADOR LA HAMBURGUESA NO ESTÁ */
.menu {
    display: none;
}

/* QUITAR LA IMAGEN DE LA HAMBURGUESA DEL ORDENADOR */
.img_hamburguer {
    display: none;
}
