.c-header {
    background-color: var(--bg-header);
    padding-inline: 4rem;
    padding-block: 1rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0px 4px 4px rgb(0, 0, 0, 0.25);
    position: fixed;
    z-index: 1;
    width: 100%;

    height: 6rem;
}

main{
    margin-top: 6rem;
}

.c-header-logo img {
    width: 100%;
}

.c-header-menu {
    display: flex;
    gap: 30px;
}

.c-header-menu a {
    font-size: var(--fuente-subtitulo);
    text-decoration: none;
    color: var(--text-header);
}

.item-enlaces {
    display: flex;
    gap: 8px;
}

.c-header-otros-enlaces {
    display: flex;
    gap: 23px;
}

.c-header-otros-enlaces a {
    font-size: var(--fuente-subtitulo);
    text-decoration: none;
    color: var(--text-header);
}

.c-header-menu-movil {
    display: none;
}

.menu-movil {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-header);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 10;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in;
    overflow: hidden;
}

.c-logo-icon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: max-content;
}

.enlaces-movil {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.enlaces-movil a {
    color: var(--text-header);
    text-decoration: none;
    font-size: var(--fuente-subtitulo);
}

.telefono-movil {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-block: 1rem 0rem;

    margin-top: auto;
    justify-content: center;
    border-top: 1px solid #000000;
    text-decoration: none;
    color: var(--text-header);

}

.logo-belisario-movil {
    width: 5rem;

}

.icono-cerrar {
    width: 1.5rem;
}

@media screen and (max-width: 1024px) {
    .item-enlaces p {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .c-header {
        padding-inline: 2rem;
    }

    .c-header-menu {
        display: none;
    }

    .c-header-otros-enlaces {
        gap: 10px;
    }

    .c-header-menu-movil {
        display: block;
    }
}

@media screen and (max-width: 425px) {

    .item-enlaces p,
    .item-enlaces span {
        display: none;
    }
}