/* MENÚ PRINCIPAL */
header {
    padding: 0 20px;
    
    .inside-header {
        border-bottom: 1px solid var(--c-primario);
    
        .main-title {
            a {
                font-family: var(--f-primaria);
                font-size: 18px;
                font-weight: 500;
                text-transform: uppercase;
            }
        }

        .main-nav {
            .menu-item {
                a {
                    font-family: var(--f-secundaria);
                    font-size: 15px;
                    text-transform: uppercase;
                    transition: all 0.35s ease;
                    margin-left: 30px;
                    
                    &:hover {
                        font-weight: 700;
                    }
                }
            }

            .current-menu-item {
                a {
                    font-weight: 700;
                }
            }
        }
    }
}


/* MENÚ HOME */
.menu-cab p {
    width: fit-content;
}

.menu-scroll {
    margin-top: 100px;

    a {
        position: relative;

        &::before {
            content: "";
            position: absolute;
            width: 130px;
            height: 1px;
            background-color: var(--c-texto);
            left: -145px;
            top: 0;
            bottom: 0;
            margin: auto;
        }
    }
}

@media screen and (max-width: 1024px) {
    .menu-scroll {
        margin-top: 50px;

        a {
            &::before {
                width: 80px;
                left: -95px;
            }
        }
    }
}

/* MENÚ MÓVIL */
#generate-slideout-menu {
    .inside-navigation {
        padding: 20px;

        .main-nav {
            .menu-item {
                a {
                    font-family: var(--f-secundaria);
                    font-size: 15px;
                    text-transform: uppercase;
                    transition: all 0.35s ease;
                }
            }

            .current-menu-item {
                a {
                    font-weight: 700;
                }
            }
        }
    }   
}