.cabecera {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    height: 15vh;
    padding: 0 var(--padding_normal);
    box-sizing: border-box;
    background-color: var(--color_primario);
    transition: var(--transicion_media);
}

.cabecera_expandida {
    height: 25vh;
    transition: var(--transicion_media);
}

.fila {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    padding: var(--padding_normal);
}

.menu_hamburguesa {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    height: 80%;
    width: 30px;
    cursor: pointer;
}

.espaciador_derecha {
    width: 20px;
}

.barra {
    height: 15%;
    width: 100%;
    border-radius: var(--radio_bordes);
    background-color: var(--color_secundario);
}

.logo {
    height: 60px;
    width: 60px;
}

@media screen and (min-width: 480px) {
    .logo {
        height: 80px;
        width: 80px;
    }
}

.logo img {
    height: 100%;
    width: 100%;
}

.navegacion {
    display: none;
}

.navegacion_visible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap_normal);
}

.navegacion ul,
.cfooter_lista {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.n_lista {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap_normal);
}

.item_lista {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 80px;
}

.item_lista a {
    color: var(--color_principal_fuente);
    font-size: var(--tamano_subtitulo);
    font-family: var(--fuente_primaria);
    text-decoration: none;
}